Commit 1cd9855c authored by Russell King's avatar Russell King Committed by Russell King

[SERIAL] Fix lh7a40x serial driver

Missed updating two lh7a40xuart_stop_tx calls.
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 4706df3d
...@@ -207,7 +207,7 @@ static void lh7a40xuart_tx_chars (struct uart_port* port) ...@@ -207,7 +207,7 @@ static void lh7a40xuart_tx_chars (struct uart_port* port)
return; return;
} }
if (uart_circ_empty (xmit) || uart_tx_stopped (port)) { if (uart_circ_empty (xmit) || uart_tx_stopped (port)) {
lh7a40xuart_stop_tx (port, 0); lh7a40xuart_stop_tx (port);
return; return;
} }
...@@ -229,7 +229,7 @@ static void lh7a40xuart_tx_chars (struct uart_port* port) ...@@ -229,7 +229,7 @@ static void lh7a40xuart_tx_chars (struct uart_port* port)
uart_write_wakeup (port); uart_write_wakeup (port);
if (uart_circ_empty (xmit)) if (uart_circ_empty (xmit))
lh7a40xuart_stop_tx (port, 0); lh7a40xuart_stop_tx (port);
} }
static void lh7a40xuart_modem_status (struct uart_port* port) static void lh7a40xuart_modem_status (struct uart_port* port)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment