spi: rockchip: migrate to dmaengine_terminate_async
dmaengine_terminate_all is deprecated, let's use dmaengine_terminate_async for interrupt handling. Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Родитель
ea98491133
Коммит
557b7ea34b
|
@ -322,12 +322,12 @@ static void rockchip_spi_handle_err(struct spi_master *master,
|
||||||
*/
|
*/
|
||||||
if (rs->use_dma) {
|
if (rs->use_dma) {
|
||||||
if (rs->state & RXBUSY) {
|
if (rs->state & RXBUSY) {
|
||||||
dmaengine_terminate_all(rs->dma_rx.ch);
|
dmaengine_terminate_async(rs->dma_rx.ch);
|
||||||
flush_fifo(rs);
|
flush_fifo(rs);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (rs->state & TXBUSY)
|
if (rs->state & TXBUSY)
|
||||||
dmaengine_terminate_all(rs->dma_tx.ch);
|
dmaengine_terminate_async(rs->dma_tx.ch);
|
||||||
}
|
}
|
||||||
|
|
||||||
spin_unlock_irqrestore(&rs->lock, flags);
|
spin_unlock_irqrestore(&rs->lock, flags);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче