mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 14:42:37 +02:00
tty: serial: imx: use the sg count from dma_map_sg
commit596fd8dffbupstream. The dmaengine_prep_slave_sg needs to use sg count returned by dma_map_sg, not use sport->dma_tx_nents, because the return value of dma_map_sg is not always same with "nents". Fixes:b4cdc8f61b("serial: imx: add DMA support for imx6q") Signed-off-by: Peng Fan <peng.fan@nxp.com> Link: https://lore.kernel.org/r/1573108875-26530-1-git-send-email-peng.fan@nxp.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
cd85fa3367
commit
8dc7267338
|
|
@ -624,7 +624,7 @@ static void imx_uart_dma_tx(struct imx_port *sport)
|
|||
dev_err(dev, "DMA mapping error for TX.\n");
|
||||
return;
|
||||
}
|
||||
desc = dmaengine_prep_slave_sg(chan, sgl, sport->dma_tx_nents,
|
||||
desc = dmaengine_prep_slave_sg(chan, sgl, ret,
|
||||
DMA_MEM_TO_DEV, DMA_PREP_INTERRUPT);
|
||||
if (!desc) {
|
||||
dma_unmap_sg(dev, sgl, sport->dma_tx_nents,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user