linux-serial.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] pch_uart: Fix dma_sync_sg_for_device() nents value
@ 2025-06-30 12:10 Thomas Fourier
  2025-06-30 12:49 ` Greg KH
  2025-06-30 13:01 ` Jiri Slaby
  0 siblings, 2 replies; 5+ messages in thread
From: Thomas Fourier @ 2025-06-30 12:10 UTC (permalink / raw)
  Cc: Thomas Fourier, Jiri Slaby, Andy Shevchenko, Tomoya MORINAGA,
	linux-kernel, linux-serial

The dma_sync_sg_for_device() functions should be called with the same
nents as the dma_map_sg(), not the value the map function returned.

Fixes: da3564ee027e ("pch_uart: add multi-scatter processing")
Signed-off-by: Thomas Fourier <fourier.thomas@gmail.com>
---
 drivers/tty/serial/pch_uart.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/tty/serial/pch_uart.c b/drivers/tty/serial/pch_uart.c
index 508e8c6f01d4..884fefbfd5a1 100644
--- a/drivers/tty/serial/pch_uart.c
+++ b/drivers/tty/serial/pch_uart.c
@@ -954,7 +954,7 @@ static unsigned int dma_handle_tx(struct eg20t_port *priv)
 			__func__);
 		return 0;
 	}
-	dma_sync_sg_for_device(port->dev, priv->sg_tx_p, nent, DMA_TO_DEVICE);
+	dma_sync_sg_for_device(port->dev, priv->sg_tx_p, num, DMA_TO_DEVICE);
 	priv->desc_tx = desc;
 	desc->callback = pch_dma_tx_complete;
 	desc->callback_param = priv;
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2025-07-01  5:15 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-30 12:10 [PATCH v2] pch_uart: Fix dma_sync_sg_for_device() nents value Thomas Fourier
2025-06-30 12:49 ` Greg KH
2025-06-30 13:01 ` Jiri Slaby
2025-06-30 13:13   ` Andy Shevchenko
2025-07-01  5:15     ` Jiri Slaby

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).