From e5e8b383adc8a7a10831188694e41ae383852ec5 Mon Sep 17 00:00:00 2001 From: Javier Martinez Canillas Date: Fri, 31 Dec 2010 07:26:21 +0100 Subject: tty: tiny_serial: Remove tty_[start | stop] to tyny_[start | stop]_tx --- tty/tiny_serial.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tty/tiny_serial.c') diff --git a/tty/tiny_serial.c b/tty/tiny_serial.c index 1ad3e1b..67acda3 100644 --- a/tty/tiny_serial.c +++ b/tty/tiny_serial.c @@ -44,7 +44,7 @@ MODULE_LICENSE("GPL"); static struct timer_list *timer; -static void tiny_stop_tx(struct uart_port *port, unsigned int tty_stop) +static void tiny_stop_tx(struct uart_port *port) { } @@ -68,7 +68,7 @@ static void tiny_tx_chars(struct uart_port *port) return; } if (uart_circ_empty(xmit) || uart_tx_stopped(port)) { - tiny_stop_tx(port, 0); + tiny_stop_tx(port); return; } @@ -85,10 +85,10 @@ static void tiny_tx_chars(struct uart_port *port) uart_write_wakeup(port); if (uart_circ_empty(xmit)) - tiny_stop_tx(port, 0); + tiny_stop_tx(port); } -static void tiny_start_tx(struct uart_port *port, unsigned int tty_start) +static void tiny_start_tx(struct uart_port *port) { } -- cgit v1.2.1-18-gbd029