Commit a26dee29 authored by Wolfram Sang's avatar Wolfram Sang Committed by Mark Brown

spi: spi-sh-msiof: : use proper DMAENGINE API for termination

dmaengine_terminate_all() is deprecated in favor of explicitly saying if
it should be sync or async. Here, we want dmaengine_terminate_sync()
because there is no other synchronization code in the driver to handle
an async case.
Signed-off-by: default avatarWolfram Sang <wsa+renesas@sang-engineering.com>
Link: https://lore.kernel.org/r/20210623095843.3228-3-wsa+renesas@sang-engineering.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 29176edd
...@@ -853,10 +853,10 @@ static int sh_msiof_dma_once(struct sh_msiof_spi_priv *p, const void *tx, ...@@ -853,10 +853,10 @@ static int sh_msiof_dma_once(struct sh_msiof_spi_priv *p, const void *tx,
sh_msiof_spi_stop(p, rx); sh_msiof_spi_stop(p, rx);
stop_dma: stop_dma:
if (tx) if (tx)
dmaengine_terminate_all(p->ctlr->dma_tx); dmaengine_terminate_sync(p->ctlr->dma_tx);
no_dma_tx: no_dma_tx:
if (rx) if (rx)
dmaengine_terminate_all(p->ctlr->dma_rx); dmaengine_terminate_sync(p->ctlr->dma_rx);
sh_msiof_write(p, SIIER, 0); sh_msiof_write(p, SIIER, 0);
return ret; return ret;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment