diff options
| -rw-r--r-- | sound/soc/samsung/dma.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sound/soc/samsung/dma.c b/sound/soc/samsung/dma.c index f3ebc38c10fe..b70964ea448c 100644 --- a/sound/soc/samsung/dma.c +++ b/sound/soc/samsung/dma.c | |||
| @@ -34,9 +34,7 @@ static const struct snd_pcm_hardware dma_hardware = { | |||
| 34 | .info = SNDRV_PCM_INFO_INTERLEAVED | | 34 | .info = SNDRV_PCM_INFO_INTERLEAVED | |
| 35 | SNDRV_PCM_INFO_BLOCK_TRANSFER | | 35 | SNDRV_PCM_INFO_BLOCK_TRANSFER | |
| 36 | SNDRV_PCM_INFO_MMAP | | 36 | SNDRV_PCM_INFO_MMAP | |
| 37 | SNDRV_PCM_INFO_MMAP_VALID | | 37 | SNDRV_PCM_INFO_MMAP_VALID, |
| 38 | SNDRV_PCM_INFO_PAUSE | | ||
| 39 | SNDRV_PCM_INFO_RESUME, | ||
| 40 | .formats = SNDRV_PCM_FMTBIT_S16_LE | | 38 | .formats = SNDRV_PCM_FMTBIT_S16_LE | |
| 41 | SNDRV_PCM_FMTBIT_U16_LE | | 39 | SNDRV_PCM_FMTBIT_U16_LE | |
| 42 | SNDRV_PCM_FMTBIT_U8 | | 40 | SNDRV_PCM_FMTBIT_U8 | |
| @@ -248,15 +246,11 @@ static int dma_trigger(struct snd_pcm_substream *substream, int cmd) | |||
| 248 | 246 | ||
| 249 | switch (cmd) { | 247 | switch (cmd) { |
| 250 | case SNDRV_PCM_TRIGGER_START: | 248 | case SNDRV_PCM_TRIGGER_START: |
| 251 | case SNDRV_PCM_TRIGGER_RESUME: | ||
| 252 | case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: | ||
| 253 | prtd->state |= ST_RUNNING; | 249 | prtd->state |= ST_RUNNING; |
| 254 | prtd->params->ops->trigger(prtd->params->ch); | 250 | prtd->params->ops->trigger(prtd->params->ch); |
| 255 | break; | 251 | break; |
| 256 | 252 | ||
| 257 | case SNDRV_PCM_TRIGGER_STOP: | 253 | case SNDRV_PCM_TRIGGER_STOP: |
| 258 | case SNDRV_PCM_TRIGGER_SUSPEND: | ||
| 259 | case SNDRV_PCM_TRIGGER_PAUSE_PUSH: | ||
| 260 | prtd->state &= ~ST_RUNNING; | 254 | prtd->state &= ~ST_RUNNING; |
| 261 | prtd->params->ops->stop(prtd->params->ch); | 255 | prtd->params->ops->stop(prtd->params->ch); |
| 262 | break; | 256 | break; |
