diff options
author | Javier Martinez Canillas <martinez.javier@gmail.com> | 2010-12-31 07:21:22 +0100 |
---|---|---|
committer | Javier Martinez Canillas <martinez.javier@gmail.com> | 2010-12-31 07:21:22 +0100 |
commit | c1d542bcab078274c05220376cda522892aa0a48 (patch) | |
tree | 496f74f839ebc0268c06b9e36391721742965116 | |
parent | e980d70406f4dd40c1984886fd49c585414e36f6 (diff) | |
download | ldd3-c1d542bcab078274c05220376cda522892aa0a48.tar.gz |
tty: tiny_serial: Use ktermios instead of termios
-rw-r--r-- | tty/tiny_serial.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tty/tiny_serial.c b/tty/tiny_serial.c index 996cfdb..1ad3e1b 100644 --- a/tty/tiny_serial.c +++ b/tty/tiny_serial.c @@ -140,7 +140,7 @@ static void tiny_break_ctl(struct uart_port *port, int break_state) } static void tiny_set_termios(struct uart_port *port, - struct termios *new, struct termios *old) + struct ktermios *new, struct ktermios *old) { int baud, quot, cflag = new->c_cflag; /* get the byte size */ |