From: Mark Brown Date: Thu, 22 Dec 2011 11:37:03 +0000 (+0000) Subject: Revert "ASoC: mxs: correct 'direction' of device_prep_dma_cyclic" X-Git-Tag: v3.12-rc1~3017^2~201^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=da403f87a2599db34f611f198d744d54ed964e26;p=kernel%2Fkernel-generic.git Revert "ASoC: mxs: correct 'direction' of device_prep_dma_cyclic" This reverts commit dbec3b30a601791717bc5bb827e210c3b5d6e067 as it should never have been applied to the ASoC tree at all, let alone 3.2. --- diff --git a/sound/soc/mxs/mxs-pcm.c b/sound/soc/mxs/mxs-pcm.c index 5dfd325..f39d7dd 100644 --- a/sound/soc/mxs/mxs-pcm.c +++ b/sound/soc/mxs/mxs-pcm.c @@ -136,7 +136,7 @@ static int snd_mxs_pcm_hw_params(struct snd_pcm_substream *substream, iprtd->period_bytes * iprtd->periods, iprtd->period_bytes, substream->stream == SNDRV_PCM_STREAM_PLAYBACK ? - DMA_MEM_TO_DEV : DMA_DEV_TO_MEM); + DMA_TO_DEVICE : DMA_FROM_DEVICE); if (!iprtd->desc) { dev_err(&chan->dev->device, "cannot prepare slave dma\n"); return -EINVAL;