diff options
author | Mark Brown <broonie@linaro.org> | 2013-08-22 09:28:51 -0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-08-22 09:28:51 -0400 |
commit | 049d41409d7089a7a128950231642055b963f0e4 (patch) | |
tree | b429984fc589be87e50de205a2385cee475c1770 | |
parent | 8ef2292edbe50c432c5aa816e8add7d2ce6e894c (diff) | |
parent | a14d982962c1c3caee99ddeea632d97fc851ea60 (diff) |
Merge remote-tracking branch 'asoc/topic/sta32x' into asoc-next
-rw-r--r-- | sound/soc/codecs/sta32x.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/sound/soc/codecs/sta32x.c b/sound/soc/codecs/sta32x.c index cfb55fe35e98..06edb396e733 100644 --- a/sound/soc/codecs/sta32x.c +++ b/sound/soc/codecs/sta32x.c | |||
@@ -363,16 +363,18 @@ static void sta32x_watchdog(struct work_struct *work) | |||
363 | } | 363 | } |
364 | 364 | ||
365 | if (!sta32x->shutdown) | 365 | if (!sta32x->shutdown) |
366 | schedule_delayed_work(&sta32x->watchdog_work, | 366 | queue_delayed_work(system_power_efficient_wq, |
367 | round_jiffies_relative(HZ)); | 367 | &sta32x->watchdog_work, |
368 | round_jiffies_relative(HZ)); | ||
368 | } | 369 | } |
369 | 370 | ||
370 | static void sta32x_watchdog_start(struct sta32x_priv *sta32x) | 371 | static void sta32x_watchdog_start(struct sta32x_priv *sta32x) |
371 | { | 372 | { |
372 | if (sta32x->pdata->needs_esd_watchdog) { | 373 | if (sta32x->pdata->needs_esd_watchdog) { |
373 | sta32x->shutdown = 0; | 374 | sta32x->shutdown = 0; |
374 | schedule_delayed_work(&sta32x->watchdog_work, | 375 | queue_delayed_work(system_power_efficient_wq, |
375 | round_jiffies_relative(HZ)); | 376 | &sta32x->watchdog_work, |
377 | round_jiffies_relative(HZ)); | ||
376 | } | 378 | } |
377 | } | 379 | } |
378 | 380 | ||