diff options
Diffstat (limited to 'drivers/serial/sunsab.c')
| -rw-r--r-- | drivers/serial/sunsab.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/serial/sunsab.c b/drivers/serial/sunsab.c index 8d198880756a..e971156daa60 100644 --- a/drivers/serial/sunsab.c +++ b/drivers/serial/sunsab.c | |||
| @@ -245,7 +245,7 @@ receive_chars(struct uart_sunsab_port *up, | |||
| 245 | return tty; | 245 | return tty; |
| 246 | } | 246 | } |
| 247 | 247 | ||
| 248 | static void sunsab_stop_tx(struct uart_port *, unsigned int); | 248 | static void sunsab_stop_tx(struct uart_port *); |
| 249 | static void sunsab_tx_idle(struct uart_sunsab_port *); | 249 | static void sunsab_tx_idle(struct uart_sunsab_port *); |
| 250 | 250 | ||
| 251 | static void transmit_chars(struct uart_sunsab_port *up, | 251 | static void transmit_chars(struct uart_sunsab_port *up, |
| @@ -301,7 +301,7 @@ static void transmit_chars(struct uart_sunsab_port *up, | |||
| 301 | uart_write_wakeup(&up->port); | 301 | uart_write_wakeup(&up->port); |
| 302 | 302 | ||
| 303 | if (uart_circ_empty(xmit)) | 303 | if (uart_circ_empty(xmit)) |
| 304 | sunsab_stop_tx(&up->port, 0); | 304 | sunsab_stop_tx(&up->port); |
| 305 | } | 305 | } |
| 306 | 306 | ||
| 307 | static void check_status(struct uart_sunsab_port *up, | 307 | static void check_status(struct uart_sunsab_port *up, |
| @@ -448,7 +448,7 @@ static unsigned int sunsab_get_mctrl(struct uart_port *port) | |||
| 448 | } | 448 | } |
| 449 | 449 | ||
| 450 | /* port->lock held by caller. */ | 450 | /* port->lock held by caller. */ |
| 451 | static void sunsab_stop_tx(struct uart_port *port, unsigned int tty_stop) | 451 | static void sunsab_stop_tx(struct uart_port *port) |
| 452 | { | 452 | { |
| 453 | struct uart_sunsab_port *up = (struct uart_sunsab_port *) port; | 453 | struct uart_sunsab_port *up = (struct uart_sunsab_port *) port; |
| 454 | 454 | ||
| @@ -476,7 +476,7 @@ static void sunsab_tx_idle(struct uart_sunsab_port *up) | |||
| 476 | } | 476 | } |
| 477 | 477 | ||
| 478 | /* port->lock held by caller. */ | 478 | /* port->lock held by caller. */ |
| 479 | static void sunsab_start_tx(struct uart_port *port, unsigned int tty_start) | 479 | static void sunsab_start_tx(struct uart_port *port) |
| 480 | { | 480 | { |
| 481 | struct uart_sunsab_port *up = (struct uart_sunsab_port *) port; | 481 | struct uart_sunsab_port *up = (struct uart_sunsab_port *) port; |
| 482 | struct circ_buf *xmit = &up->port.info->xmit; | 482 | struct circ_buf *xmit = &up->port.info->xmit; |
