diff options
author | Huang Shijie <b32955@freescale.com> | 2011-11-18 16:38:02 +0800 |
---|---|---|
committer | Vinod Koul <vinod.koul@linux.intel.com> | 2011-11-22 09:51:45 +0530 |
commit | e69664336d6400cc1685716ee5f04ef74e85703e (patch) | |
tree | afd600c789944c78546e773ae5a23ec3b0cf3f49 | |
parent | 7fb3e75e1833743d5faf3adbae46b63f503c6fdf (diff) |
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>
-rw-r--r-- | drivers/dma/imx-sdma.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/dma/imx-sdma.c b/drivers/dma/imx-sdma.c index 2e0357178d1..d9e5933d91e 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; |