mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 17:24:17 +08:00
serial: arc_uart: Use uart_circ_empty() for open-coded comparison
Replace open-coded test for empty tx ring buffer with equivalent helper function, uart_circ_empty(). No functional change. Signed-off-by: Peter Hurley <peter@hurleysoftware.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c557d392fb
commit
99ecb001f5
@ -177,7 +177,7 @@ static void arc_serial_tx_chars(struct arc_uart_port *uart)
|
||||
uart->port.icount.tx++;
|
||||
uart->port.x_char = 0;
|
||||
sent = 1;
|
||||
} else if (xmit->tail != xmit->head) { /* TODO: uart_circ_empty */
|
||||
} else if (!uart_circ_empty(xmit)) {
|
||||
ch = xmit->buf[xmit->tail];
|
||||
xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
|
||||
uart->port.icount.tx++;
|
||||
|
Loading…
Reference in New Issue
Block a user