aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/extcon
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/extcon')
-rw-r--r--drivers/extcon/extcon-max8997.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/extcon/extcon-max8997.c b/drivers/extcon/extcon-max8997.c
index 5e1b88cecb76..223e6b068c98 100644
--- a/drivers/extcon/extcon-max8997.c
+++ b/drivers/extcon/extcon-max8997.c
@@ -770,7 +770,8 @@ static int max8997_muic_probe(struct platform_device *pdev)
770 * driver should notify cable state to upper layer. 770 * driver should notify cable state to upper layer.
771 */ 771 */
772 INIT_DELAYED_WORK(&info->wq_detcable, max8997_muic_detect_cable_wq); 772 INIT_DELAYED_WORK(&info->wq_detcable, max8997_muic_detect_cable_wq);
773 schedule_delayed_work(&info->wq_detcable, delay_jiffies); 773 queue_delayed_work(system_power_efficient_wq, &info->wq_detcable,
774 delay_jiffies);
774 775
775 return 0; 776 return 0;
776 777