aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/tty/serial/8250/8250_core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/8250/8250_core.c b/drivers/tty/serial/8250/8250_core.c
index 46ae9fda68b6..e3b9570a1eff 100644
--- a/drivers/tty/serial/8250/8250_core.c
+++ b/drivers/tty/serial/8250/8250_core.c
@@ -1388,7 +1388,7 @@ static void serial8250_start_tx(struct uart_port *port)
1388 unsigned char lsr; 1388 unsigned char lsr;
1389 lsr = serial_in(up, UART_LSR); 1389 lsr = serial_in(up, UART_LSR);
1390 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS; 1390 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
1391 if (lsr & UART_LSR_TEMT) 1391 if (lsr & UART_LSR_THRE)
1392 serial8250_tx_chars(up); 1392 serial8250_tx_chars(up);
1393 } 1393 }
1394 } 1394 }