mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-20 00:26:39 +08:00
spi: mxs: Terminate DMA in case of DMA timeout
In case the SPI DMA times out, the DMA might still be in some kind of inconsistent state. Issue dmaengine_terminate_all() on the particular channel to kill off all operations before continuing. Signed-off-by: Marek Vasut <marex@denx.de> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
parent
d856f1eb56
commit
44968466cf
@ -323,6 +323,7 @@ static int mxs_spi_txrx_dma(struct mxs_spi *spi, int cs,
|
||||
if (!ret) {
|
||||
dev_err(ssp->dev, "DMA transfer timeout\n");
|
||||
ret = -ETIMEDOUT;
|
||||
dmaengine_terminate_all(ssp->dmach);
|
||||
goto err_vmalloc;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user