aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/extcon/extcon-arizona.c
diff options
context:
space:
mode:
authorCharles Keepax <ckeepax@opensource.wolfsonmicro.com>2014-05-29 16:27:54 +0100
committerChanwoo Choi <cw00.choi@samsung.com>2014-06-16 13:33:19 +0900
commite368f525218497a9943b61301148d30382c1e014 (patch)
tree83fc0de4a61514534f331c0fef43972e19e47ec4 /drivers/extcon/extcon-arizona.c
parentextcon: arizona: Use extcon cable API with index of extcon cable instead of string (diff)
downloadlinux-dev-e368f525218497a9943b61301148d30382c1e014.tar.xz
linux-dev-e368f525218497a9943b61301148d30382c1e014.zip
extcon: arizona: Correct typo to disable regulation for button detection
We can use the bypass mode on the MICVDD reg for button detection, as the comment in the code states, however the code was mistakenly disabling bypass. This patch corrects this and allows bypass mode during button detection. Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Diffstat (limited to 'drivers/extcon/extcon-arizona.c')
-rw-r--r--drivers/extcon/extcon-arizona.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/extcon/extcon-arizona.c b/drivers/extcon/extcon-arizona.c
index f2c36b15a845..c6347965c639 100644
--- a/drivers/extcon/extcon-arizona.c
+++ b/drivers/extcon/extcon-arizona.c
@@ -823,7 +823,7 @@ static void arizona_micd_detect(struct work_struct *work)
ret);
/* Don't need to regulate for button detection */
- ret = regulator_allow_bypass(info->micvdd, false);
+ ret = regulator_allow_bypass(info->micvdd, true);
if (ret != 0) {
dev_err(arizona->dev, "Failed to bypass MICVDD: %d\n",
ret);