From: Charles Keepax Date: Thu, 29 May 2014 15:27:54 +0000 (+0100) Subject: extcon: arizona: Correct typo to disable regulation for button detection X-Git-Tag: v3.17-rc1~125^2^2~9 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e368f525218497a9943b61301148d30382c1e014;p=karo-tx-linux.git 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 Signed-off-by: Chanwoo Choi --- 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);