summaryrefslogtreecommitdiffstats
path: root/sound/soc/soc-pcm.c
diff options
context:
space:
mode:
authorNicolin Chen2014-05-12 14:12:05 +0200
committerMark Brown2014-05-12 22:16:06 +0200
commit868a6ca84ee7e547ae01a5e04e232e4a392c50b8 (patch)
treebd57c5ca6eb72845ec20f348740c3790c87b38b5 /sound/soc/soc-pcm.c
parentLinux 3.15-rc1 (diff)
downloadkernel-qcow2-linux-868a6ca84ee7e547ae01a5e04e232e4a392c50b8.tar.gz
kernel-qcow2-linux-868a6ca84ee7e547ae01a5e04e232e4a392c50b8.tar.xz
kernel-qcow2-linux-868a6ca84ee7e547ae01a5e04e232e4a392c50b8.zip
ASoC: pcm: Fix incorrect condition check for case SNDRV_PCM_TRIGGER_SUSPEND
The regular state before we execute SNDRV_PCM_TRIGGER_SUSPEND should be SNDRV_PCM_TRIGGER_START, not SNDRV_PCM_TRIGGER_STOP. Thus fix it. Signed-off-by: Nicolin Chen <Guangyu.Chen@freescale.com> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc/soc-pcm.c')
-rw-r--r--sound/soc/soc-pcm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/soc-pcm.c b/sound/soc/soc-pcm.c
index 2cedf09f6d96..a391de058037 100644
--- a/sound/soc/soc-pcm.c
+++ b/sound/soc/soc-pcm.c
@@ -1675,7 +1675,7 @@ int dpcm_be_dai_trigger(struct snd_soc_pcm_runtime *fe, int stream,
be->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
break;
case SNDRV_PCM_TRIGGER_SUSPEND:
- if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP)
+ if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
continue;
if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))