Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2bcd90d5 authored by Vinod Koul's avatar Vinod Koul
Browse files

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: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: default avatarVinod Koul <vinod.koul@intel.com>
parent 843d349c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);