OSDN Git Service

dmaengine: coh901318: use dmaengine_terminate_all() API
authorVinod Koul <vinod.koul@intel.com>
Sat, 11 Oct 2014 15:40:30 +0000 (21:10 +0530)
committerVinod Koul <vinod.koul@intel.com>
Wed, 15 Oct 2014 16:00:59 +0000 (21:30 +0530)
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>
drivers/dma/coh901318.c

index 3c6716e..e88588d 100644 (file)
@@ -2156,7 +2156,7 @@ coh901318_free_chan_resources(struct dma_chan *chan)
 
        spin_unlock_irqrestore(&cohc->lock, flags);
 
-       chan->device->device_control(chan, DMA_TERMINATE_ALL, 0);
+       dmaengine_terminate_all(chan);
 }