]> git.hungrycats.org Git - linux/commitdiff
[SERIAL] Fix sa1100 serial driver stop function parameters.
authorRussell King <rmk@flint.arm.linux.org.uk>
Tue, 23 Jul 2002 23:31:48 +0000 (00:31 +0100)
committerRussell King <rmk@flint.arm.linux.org.uk>
Tue, 23 Jul 2002 23:31:48 +0000 (00:31 +0100)
drivers/serial/sa1100.c

index 5cb10a4eb708711623d1c6b6ec4483d9dd25b69e..b10ad6329dbecc8d6dfd1721c5b572d38030bf77 100644 (file)
@@ -306,7 +306,7 @@ static void sa1100_tx_chars(struct sa1100_port *sport)
        sa1100_mctrl_check(sport);
 
        if (uart_circ_empty(xmit) || uart_tx_stopped(&sport->port)) {
-               sa1100_stop_tx(sport);
+               sa1100_stop_tx(&sport->port, 0);
                return;
        }
 
@@ -326,7 +326,7 @@ static void sa1100_tx_chars(struct sa1100_port *sport)
                uart_event(&sport->port, EVT_WRITE_WAKEUP);
 
        if (uart_circ_empty(xmit))
-               sa1100_stop_tx(sport);
+               sa1100_stop_tx(&sport->port, 0);
 }
 
 static void sa1100_int(int irq, void *dev_id, struct pt_regs *regs)