diff options
author | Vinod Koul <vinod.koul@linux.intel.com> | 2012-03-26 17:28:08 +0530 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-03-26 18:28:11 +0100 |
commit | 41ba6b711a40b83a877ae8242a4b3e692de91f97 (patch) | |
tree | c48ab8a184970be1a354d75b484ba878d7e7094f /sound/soc/soc-dmaengine-pcm.c | |
parent | 4a163c82d600e554ef79e931db6315026e1fc819 (diff) | |
download | linux-3.10-41ba6b711a40b83a877ae8242a4b3e692de91f97.tar.gz linux-3.10-41ba6b711a40b83a877ae8242a4b3e692de91f97.tar.bz2 linux-3.10-41ba6b711a40b83a877ae8242a4b3e692de91f97.zip |
ASoC: dmaengine_pcm: use dmaengine cyclic wrapper
commit 4a163c82 added extra parameter to device_prep_dma_cyclic
this is not required if we use the wrapper over cyclic API.
This is split from Alexedre's patch
Signed-off-by: Vinod Koul <vinod.koul@linux.intel.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/soc-dmaengine-pcm.c')
-rw-r--r-- | sound/soc/soc-dmaengine-pcm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/soc-dmaengine-pcm.c b/sound/soc/soc-dmaengine-pcm.c index 76c038b4a97..475695234b3 100644 --- a/sound/soc/soc-dmaengine-pcm.c +++ b/sound/soc/soc-dmaengine-pcm.c @@ -143,10 +143,10 @@ static int dmaengine_pcm_prepare_and_submit(struct snd_pcm_substream *substream) direction = snd_pcm_substream_to_dma_direction(substream); prtd->pos = 0; - desc = chan->device->device_prep_dma_cyclic(chan, + desc = dmaengine_prep_dma_cyclic(chan, substream->runtime->dma_addr, snd_pcm_lib_buffer_bytes(substream), - snd_pcm_lib_period_bytes(substream), direction, NULL); + snd_pcm_lib_period_bytes(substream), direction); if (!desc) return -ENOMEM; |