tree 292236e1eaf4facd3dd0d50e779b5dc0cf1bad6d
parent 4706df3d3c42af802597d82c8b1542c3d52eab23
author Russell King <[EMAIL PROTECTED]> Tue, 06 Sep 2005 23:14:59 +0100
committer Russell King <[EMAIL PROTECTED]> Tue, 06 Sep 2005 23:14:59 +0100

[SERIAL] Fix lh7a40x serial driver

Missed updating two lh7a40xuart_stop_tx calls.

Signed-off-by: Russell King <[EMAIL PROTECTED]>

 drivers/serial/serial_lh7a40x.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/serial/serial_lh7a40x.c b/drivers/serial/serial_lh7a40x.c
--- a/drivers/serial/serial_lh7a40x.c
+++ b/drivers/serial/serial_lh7a40x.c
@@ -207,7 +207,7 @@ static void lh7a40xuart_tx_chars (struct
                return;
        }
        if (uart_circ_empty (xmit) || uart_tx_stopped (port)) {
-               lh7a40xuart_stop_tx (port, 0);
+               lh7a40xuart_stop_tx (port);
                return;
        }
 
@@ -229,7 +229,7 @@ static void lh7a40xuart_tx_chars (struct
                uart_write_wakeup (port);
 
        if (uart_circ_empty (xmit))
-               lh7a40xuart_stop_tx (port, 0);
+               lh7a40xuart_stop_tx (port);
 }
 
 static void lh7a40xuart_modem_status (struct uart_port* port)
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to