diff options
author | Vinod Koul <vinod.koul@intel.com> | 2014-10-11 11:40:37 -0400 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2014-10-15 12:01:00 -0400 |
commit | 2bcd90d56c6025189be98bed47c80c5261855a7e (patch) | |
tree | 0af841e76d104120fbbc23f7dd5d0282a57938aa | |
parent | 843d349c20bc3562ae7b59de4067e304e89843c7 (diff) |
serial: sh-sci: use dmaengine_terminate_all() API
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>
-rw-r--r-- | drivers/tty/serial/sh-sci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/sh-sci.c b/drivers/tty/serial/sh-sci.c index 3081e46085ce..eb17c7124e72 100644 --- a/drivers/tty/serial/sh-sci.c +++ b/drivers/tty/serial/sh-sci.c | |||
@@ -1403,7 +1403,7 @@ static void work_fn_rx(struct work_struct *work) | |||
1403 | unsigned long flags; | 1403 | unsigned long flags; |
1404 | int count; | 1404 | int count; |
1405 | 1405 | ||
1406 | chan->device->device_control(chan, DMA_TERMINATE_ALL, 0); | 1406 | dmaengine_terminate_all(chan); |
1407 | dev_dbg(port->dev, "Read %zu bytes with cookie %d\n", | 1407 | dev_dbg(port->dev, "Read %zu bytes with cookie %d\n", |
1408 | sh_desc->partial, sh_desc->cookie); | 1408 | sh_desc->partial, sh_desc->cookie); |
1409 | 1409 | ||