aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma
diff options
context:
space:
mode:
authorHuang Shijie <b32955@freescale.com>2011-11-18 16:38:02 +0800
committerVinod Koul <vinod.koul@linux.intel.com>2011-11-22 09:51:45 +0530
commite69664336d6400cc1685716ee5f04ef74e85703e (patch)
treeafd600c789944c78546e773ae5a23ec3b0cf3f49 /drivers/dma
parentdmaengine/ste_dma40: support pm in dma40 (diff)
downloadlinux-dev-e69664336d6400cc1685716ee5f04ef74e85703e.tar.xz
linux-dev-e69664336d6400cc1685716ee5f04ef74e85703e.zip
IMX/DMA : set the DMA direction in the sdma_control()
Set the right DMA direction in the sdma_control(), else we will get the wrong log when enable the DYNAMIC_DEBUG. Signed-off-by: Huang Shijie <b32955@freescale.com> Signed-off-by: Vinod Koul <vinod.koul@linux.intel.com>
Diffstat (limited to 'drivers/dma')
-rw-r--r--drivers/dma/imx-sdma.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/dma/imx-sdma.c b/drivers/dma/imx-sdma.c
index 2e0357178d19..d9e5933d91eb 100644
--- a/drivers/dma/imx-sdma.c
+++ b/drivers/dma/imx-sdma.c
@@ -1102,6 +1102,7 @@ static int sdma_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd,
sdmac->watermark_level = dmaengine_cfg->dst_maxburst;
sdmac->word_size = dmaengine_cfg->dst_addr_width;
}
+ sdmac->direction = dmaengine_cfg->direction;
return sdma_config_channel(sdmac);
default:
return -ENOSYS;