aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVinod Koul <vinod.koul@intel.com>2014-10-11 11:40:32 -0400
committerVinod Koul <vinod.koul@intel.com>2014-10-15 12:00:59 -0400
commitb177ea341a588ab270c31496f34c503c31589649 (patch)
treef80eb382718ba9bd8d921ca02c04b4d8f3a6d5ac
parent0aae803a08ae1c788b47f01eddd8787a8457a930 (diff)
mtd: fsmc_nand: use dmaengine_terminate_all() API
The drivers should use dmaengine_terminate_all() API instead of accessing the device_control which will be deprecated soon Signed-off-by: Vinod Koul <vinod.koul@intel.com>
-rw-r--r--drivers/mtd/nand/fsmc_nand.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/fsmc_nand.c b/drivers/mtd/nand/fsmc_nand.c
index 1550692973dc..7a915870d9d6 100644
--- a/drivers/mtd/nand/fsmc_nand.c
+++ b/drivers/mtd/nand/fsmc_nand.c
@@ -605,7 +605,7 @@ static int dma_xfer(struct fsmc_nand_data *host, void *buffer, int len,
605 wait_for_completion_timeout(&host->dma_access_complete, 605 wait_for_completion_timeout(&host->dma_access_complete,
606 msecs_to_jiffies(3000)); 606 msecs_to_jiffies(3000));
607 if (ret <= 0) { 607 if (ret <= 0) {
608 chan->device->device_control(chan, DMA_TERMINATE_ALL, 0); 608 dmaengine_terminate_all(chan);
609 dev_err(host->dev, "wait_for_completion_timeout\n"); 609 dev_err(host->dev, "wait_for_completion_timeout\n");
610 if (!ret) 610 if (!ret)
611 ret = -ETIMEDOUT; 611 ret = -ETIMEDOUT;