aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/fsl/fsl_ssi.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/soc/fsl/fsl_ssi.c b/sound/soc/fsl/fsl_ssi.c
index e5d8819cf19f..ef504257e105 100644
--- a/sound/soc/fsl/fsl_ssi.c
+++ b/sound/soc/fsl/fsl_ssi.c
@@ -873,6 +873,7 @@ static int fsl_ssi_trigger(struct snd_pcm_substream *substream, int cmd,
873 873
874 switch (cmd) { 874 switch (cmd) {
875 case SNDRV_PCM_TRIGGER_START: 875 case SNDRV_PCM_TRIGGER_START:
876 case SNDRV_PCM_TRIGGER_RESUME:
876 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: 877 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
877 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) 878 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
878 fsl_ssi_tx_config(ssi_private, true); 879 fsl_ssi_tx_config(ssi_private, true);
@@ -881,6 +882,7 @@ static int fsl_ssi_trigger(struct snd_pcm_substream *substream, int cmd,
881 break; 882 break;
882 883
883 case SNDRV_PCM_TRIGGER_STOP: 884 case SNDRV_PCM_TRIGGER_STOP:
885 case SNDRV_PCM_TRIGGER_SUSPEND:
884 case SNDRV_PCM_TRIGGER_PAUSE_PUSH: 886 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
885 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) 887 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
886 fsl_ssi_tx_config(ssi_private, false); 888 fsl_ssi_tx_config(ssi_private, false);