diff options
author | Laxman Dewangan <ldewangan@nvidia.com> | 2013-07-10 14:59:06 +0530 |
---|---|---|
committer | Chanwoo Choi <cw00.choi@samsung.com> | 2013-08-05 08:53:34 +0900 |
commit | 7281e05aabee7484624d448da208932690ed62b3 (patch) | |
tree | 27a6516f3d805e61c794d355f0e1c818497939d3 /include/linux/mfd | |
parent | 024783ef422791d7ca58b106495f7c31802df6f3 (diff) | |
download | linux-stable-7281e05aabee7484624d448da208932690ed62b3.tar.gz linux-stable-7281e05aabee7484624d448da208932690ed62b3.tar.bz2 linux-stable-7281e05aabee7484624d448da208932690ed62b3.zip |
extcon: palmas: Option to disable ID/VBUS detection based on platform
Based on system design, platform needs to detect the VBUS or ID or
both. Provide option to select this through platform data to
disable part of cable detection through palmas-usb.
Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com>
Acked-by: Graeme Gregory <gg@slimlogic.co.uk>
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Signed-off-by: Myungjoo Ham <myungjoo.ham@samsung.com>
Diffstat (limited to 'include/linux/mfd')
-rw-r--r-- | include/linux/mfd/palmas.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/mfd/palmas.h b/include/linux/mfd/palmas.h index 03c22ca55446..cfc678ceb570 100644 --- a/include/linux/mfd/palmas.h +++ b/include/linux/mfd/palmas.h @@ -377,6 +377,9 @@ struct palmas_usb { int vbus_irq; enum palmas_usb_state linkstat; + int wakeup; + bool enable_vbus_detection; + bool enable_id_detection; }; #define comparator_to_palmas(x) container_of((x), struct palmas_usb, comparator) |