diff options
Diffstat (limited to 'sound/soc/soc-core.c')
-rw-r--r-- | sound/soc/soc-core.c | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c index 9f23901fc85c..cf84d8251715 100644 --- a/sound/soc/soc-core.c +++ b/sound/soc/soc-core.c | |||
@@ -59,7 +59,6 @@ | |||
59 | 59 | ||
60 | static DEFINE_MUTEX(pcm_mutex); | 60 | static DEFINE_MUTEX(pcm_mutex); |
61 | static DEFINE_MUTEX(io_mutex); | 61 | static DEFINE_MUTEX(io_mutex); |
62 | static struct workqueue_struct *soc_workq; | ||
63 | static DECLARE_WAIT_QUEUE_HEAD(soc_pm_waitq); | 62 | static DECLARE_WAIT_QUEUE_HEAD(soc_pm_waitq); |
64 | 63 | ||
65 | /* supported sample rates */ | 64 | /* supported sample rates */ |
@@ -810,7 +809,7 @@ static int soc_codec_close(struct snd_pcm_substream *substream) | |||
810 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { | 809 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { |
811 | /* start delayed pop wq here for playback streams */ | 810 | /* start delayed pop wq here for playback streams */ |
812 | rtd->codec_dai->pop_wait = 1; | 811 | rtd->codec_dai->pop_wait = 1; |
813 | queue_delayed_work(soc_workq, &socdev->delayed_work, | 812 | schedule_delayed_work(&socdev->delayed_work, |
814 | msecs_to_jiffies(pmdown_time)); | 813 | msecs_to_jiffies(pmdown_time)); |
815 | } else { | 814 | } else { |
816 | /* capture streams can be powered down now */ | 815 | /* capture streams can be powered down now */ |
@@ -1102,7 +1101,7 @@ static int soc_suspend(struct platform_device *pdev, pm_message_t state) | |||
1102 | } | 1101 | } |
1103 | 1102 | ||
1104 | /* close any waiting streams and save state */ | 1103 | /* close any waiting streams and save state */ |
1105 | flush_workqueue(soc_workq); | 1104 | flush_scheduled_work(); |
1106 | codec->suspend_dapm_state = codec->dapm_state; | 1105 | codec->suspend_dapm_state = codec->dapm_state; |
1107 | 1106 | ||
1108 | for(i = 0; i < codec->num_dai; i++) { | 1107 | for(i = 0; i < codec->num_dai; i++) { |
@@ -1227,16 +1226,9 @@ static int soc_probe(struct platform_device *pdev) | |||
1227 | } | 1226 | } |
1228 | 1227 | ||
1229 | /* DAPM stream work */ | 1228 | /* DAPM stream work */ |
1230 | soc_workq = create_workqueue("kdapm"); | ||
1231 | if (soc_workq == NULL) | ||
1232 | goto work_err; | ||
1233 | INIT_DELAYED_WORK(&socdev->delayed_work, close_delayed_work); | 1229 | INIT_DELAYED_WORK(&socdev->delayed_work, close_delayed_work); |
1234 | return 0; | 1230 | return 0; |
1235 | 1231 | ||
1236 | work_err: | ||
1237 | if (platform->remove) | ||
1238 | platform->remove(pdev); | ||
1239 | |||
1240 | platform_err: | 1232 | platform_err: |
1241 | if (codec_dev->remove) | 1233 | if (codec_dev->remove) |
1242 | codec_dev->remove(pdev); | 1234 | codec_dev->remove(pdev); |
@@ -1263,9 +1255,6 @@ static int soc_remove(struct platform_device *pdev) | |||
1263 | struct snd_soc_platform *platform = socdev->platform; | 1255 | struct snd_soc_platform *platform = socdev->platform; |
1264 | struct snd_soc_codec_device *codec_dev = socdev->codec_dev; | 1256 | struct snd_soc_codec_device *codec_dev = socdev->codec_dev; |
1265 | 1257 | ||
1266 | if (soc_workq) | ||
1267 | destroy_workqueue(soc_workq); | ||
1268 | |||
1269 | if (platform->remove) | 1258 | if (platform->remove) |
1270 | platform->remove(pdev); | 1259 | platform->remove(pdev); |
1271 | 1260 | ||