serial: sh-sci: use dmaengine_terminate_all() API
authorVinod Koul <vinod.koul@intel.com>
Sat, 11 Oct 2014 15:40:37 +0000 (21:10 +0530)
committerSimon Horman <horms+renesas@verge.net.au>
Fri, 5 Dec 2014 01:10:52 +0000 (10:10 +0900)
The drivers should use dmaengine_terminate_all() API instead of
accessing the device_control which will be deprecated soon

Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
(cherry picked from commit 2bcd90d56c6025189be98bed47c80c5261855a7e)
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
drivers/tty/serial/sh-sci.c

index d879c0c..2888efb 100644 (file)
@@ -1403,7 +1403,7 @@ static void work_fn_rx(struct work_struct *work)
                unsigned long flags;
                int count;
 
-               chan->device->device_control(chan, DMA_TERMINATE_ALL, 0);
+               dmaengine_terminate_all(chan);
                dev_dbg(port->dev, "Read %zu bytes with cookie %d\n",
                        sh_desc->partial, sh_desc->cookie);