From: Alan Cox Doh missed that one Signed-off-by: Alan Cox Signed-off-by: Andrew Morton --- drivers/net/wireless/strip.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/net/wireless/strip.c~tty-preparatory-structures-for-termios-revamp-strip-fix drivers/net/wireless/strip.c --- a/drivers/net/wireless/strip.c~tty-preparatory-structures-for-termios-revamp-strip-fix +++ a/drivers/net/wireless/strip.c @@ -798,7 +798,7 @@ static unsigned int get_baud(struct tty_ */ static void set_baud(struct tty_struct *tty, unsigned int baudcode) { - struct termios old_termios = *(tty->termios); + struct ktermios old_termios = *(tty->termios); tty->termios->c_cflag &= ~CBAUD; /* Clear the old baud setting */ tty->termios->c_cflag |= baudcode; /* Set the new baud setting */ tty->driver->set_termios(tty, &old_termios); _