mirror of https://gitee.com/openkylin/linux.git
extcon: usb-gpio: Don't miss event during suspend/resume
We must check for ID/VBUS changes during resume irrespective of whether our device wakeup is enabled or not. Without this we seem to be missing ID/VBUS events after system suspend/resume. Signed-off-by: Roger Quadros <rogerq@ti.com> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
This commit is contained in:
parent
98fd079297
commit
8680b4d193
|
@ -281,9 +281,8 @@ static int usb_extcon_resume(struct device *dev)
|
||||||
if (info->vbus_gpiod)
|
if (info->vbus_gpiod)
|
||||||
enable_irq(info->vbus_irq);
|
enable_irq(info->vbus_irq);
|
||||||
|
|
||||||
if (!device_may_wakeup(dev))
|
queue_delayed_work(system_power_efficient_wq,
|
||||||
queue_delayed_work(system_power_efficient_wq,
|
&info->wq_detcable, 0);
|
||||||
&info->wq_detcable, 0);
|
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue