diff options
author | Javier Martinez Canillas <martinez.javier@gmail.com> | 2010-12-31 05:57:22 +0100 |
---|---|---|
committer | Javier Martinez Canillas <martinez.javier@gmail.com> | 2010-12-31 05:57:22 +0100 |
commit | e392313ddc887b11b84b5d2bead5cba146cf1b9e (patch) | |
tree | 2b6a155ee69bf1addde82a9563e9c836e38f2a00 | |
parent | fdcb48e79b287334d0e6004d0214786fa956d282 (diff) | |
download | ldd3-e392313ddc887b11b84b5d2bead5cba146cf1b9e.tar.gz |
tty: tiny_tty: Replace termios for ktermios
-rw-r--r-- | tty/tiny_tty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tty/tiny_tty.c b/tty/tiny_tty.c index 5d5cb6f..dd11e24 100644 --- a/tty/tiny_tty.c +++ b/tty/tiny_tty.c @@ -225,7 +225,7 @@ exit: #define RELEVANT_IFLAG(iflag) ((iflag) & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK)) -static void tiny_set_termios(struct tty_struct *tty, struct termios *old_termios) +static void tiny_set_termios(struct tty_struct *tty, struct ktermios *old_termios) { unsigned int cflag; |