summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJavier Martinez Canillas <martinez.javier@gmail.com>2010-12-31 07:26:21 +0100
committerJavier Martinez Canillas <martinez.javier@gmail.com>2010-12-31 07:26:21 +0100
commite5e8b383adc8a7a10831188694e41ae383852ec5 (patch)
tree9cad8ab9413e8e06081b63bc37b6de2c2985d3ab
parentc1d542bcab078274c05220376cda522892aa0a48 (diff)
downloadldd3-e5e8b383adc8a7a10831188694e41ae383852ec5.tar.gz
tty: tiny_serial: Remove tty_[start | stop] to tyny_[start | stop]_tx
-rw-r--r--tty/tiny_serial.c8
1 files changed, 4 insertions, 4 deletions
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)
{
}