aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma/omap-dma.c
diff options
context:
space:
mode:
authorVinod Koul <vinod.koul@intel.com>2014-12-07 23:12:31 +0530
committerVinod Koul <vinod.koul@intel.com>2014-12-22 12:34:22 +0530
commit6c04cd4f579cc365e7904aa92c48b9a9f8c768b5 (patch)
tree728fca97f292501dfc20ca5bdf906f6cb6fc4804 /drivers/dma/omap-dma.c
parentdmaengine: mxs-dma: fix the arg to mxs_dma_reset_chan() (diff)
downloadlinux-dev-6c04cd4f579cc365e7904aa92c48b9a9f8c768b5.tar.xz
linux-dev-6c04cd4f579cc365e7904aa92c48b9a9f8c768b5.zip
dmaengine: omap: fix the assignment to .device_config
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma/omap-dma.c')
-rw-r--r--drivers/dma/omap-dma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/omap-dma.c b/drivers/dma/omap-dma.c
index 2654057d46bd..7dd6dd121681 100644
--- a/drivers/dma/omap-dma.c
+++ b/drivers/dma/omap-dma.c
@@ -1099,7 +1099,7 @@ static int omap_dma_probe(struct platform_device *pdev)
od->ddev.device_issue_pending = omap_dma_issue_pending;
od->ddev.device_prep_slave_sg = omap_dma_prep_slave_sg;
od->ddev.device_prep_dma_cyclic = omap_dma_prep_dma_cyclic;
- od->ddev.device_config = omap_dma_config;
+ od->ddev.device_config = omap_dma_slave_config;
od->ddev.device_pause = omap_dma_pause;
od->ddev.device_resume = omap_dma_resume;
od->ddev.device_terminate_all = omap_dma_terminate_all;