summaryrefslogtreecommitdiffstats
path: root/drivers/extcon/extcon-qcom-spmi-misc.c
diff options
context:
space:
mode:
authorStephen Boyd2016-10-18 02:16:02 +0200
committerChanwoo Choi2016-10-26 09:04:29 +0200
commit2925d366f450dc1db0ac88f2509a0eec0fef4226 (patch)
tree3a716c73567b80cf866d88ee0d8794d9b02e6e2a /drivers/extcon/extcon-qcom-spmi-misc.c
parentLinux 4.9-rc2 (diff)
downloadkernel-qcow2-linux-2925d366f450dc1db0ac88f2509a0eec0fef4226.tar.gz
kernel-qcow2-linux-2925d366f450dc1db0ac88f2509a0eec0fef4226.tar.xz
kernel-qcow2-linux-2925d366f450dc1db0ac88f2509a0eec0fef4226.zip
extcon: qcom-spmi-misc: Sync the extcon state on interrupt
The driver was changed after submission to use the new style APIs like extcon_set_state(). Unfortunately, that only sets the state, and doesn't notify any consumers that the cable state has changed. Use extcon_set_state_sync() here instead so that we notify cable consumers of the state change. This fixes USB host-device role switching on the db8074 platform. Fixes: 38085c987f52 ("extcon: Add support for qcom SPMI PMIC USB id detection hardware") Signed-off-by: Stephen Boyd <stephen.boyd@linaro.org> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Diffstat (limited to 'drivers/extcon/extcon-qcom-spmi-misc.c')
-rw-r--r--drivers/extcon/extcon-qcom-spmi-misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/extcon/extcon-qcom-spmi-misc.c b/drivers/extcon/extcon-qcom-spmi-misc.c
index ca957a5f4291..b8cde096a808 100644
--- a/drivers/extcon/extcon-qcom-spmi-misc.c
+++ b/drivers/extcon/extcon-qcom-spmi-misc.c
@@ -51,7 +51,7 @@ static void qcom_usb_extcon_detect_cable(struct work_struct *work)
if (ret)
return;
- extcon_set_state(info->edev, EXTCON_USB_HOST, !id);
+ extcon_set_state_sync(info->edev, EXTCON_USB_HOST, !id);
}
static irqreturn_t qcom_usb_irq_handler(int irq, void *dev_id)