Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

serial: arc: Use uart_xmit_advance()

Take advantage of the new uart_xmit_advance() helper.

Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Link: https://lore.kernel.org/r/20221019091151.6692-11-ilpo.jarvinen@linux.intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Ilpo Järvinen and committed by
Greg Kroah-Hartman
8a8dee2c d29d947c

+1 -2
+1 -2
drivers/tty/serial/arc_uart.c
··· 166 166 sent = 1; 167 167 } else if (!uart_circ_empty(xmit)) { 168 168 ch = xmit->buf[xmit->tail]; 169 - xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1); 170 - port->icount.tx++; 169 + uart_xmit_advance(port, 1); 171 170 while (!(UART_GET_STATUS(port) & TXEMPTY)) 172 171 cpu_relax(); 173 172 UART_SET_DATA(port, ch);