aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2012-01-09 04:32:48 -0500
committerVinod Koul <vinod.koul@linux.intel.com>2012-01-30 04:04:11 -0500
commitc0fa6c8af7ab4f5d69d512a0d5fc3de512f337ae (patch)
tree1116476809c026e3f936f4475aaf844c0b1517ba /sound
parent439aa0efd7a4a9ac225e94feee03824101c7d38e (diff)
ASoC: i.MX: Add missing dma_async_issue_pending
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Vinod Koul <vinod.koul@linux.intel.com>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/imx/imx-pcm-dma-mx2.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/imx/imx-pcm-dma-mx2.c b/sound/soc/imx/imx-pcm-dma-mx2.c
index 5780c9b9d569..1acfd25e107d 100644
--- a/sound/soc/imx/imx-pcm-dma-mx2.c
+++ b/sound/soc/imx/imx-pcm-dma-mx2.c
@@ -206,6 +206,7 @@ static int snd_imx_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
206 case SNDRV_PCM_TRIGGER_RESUME: 206 case SNDRV_PCM_TRIGGER_RESUME:
207 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: 207 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
208 dmaengine_submit(iprtd->desc); 208 dmaengine_submit(iprtd->desc);
209 dma_async_issue_pending(iprtd->dma_chan);
209 210
210 break; 211 break;
211 212