summaryrefslogtreecommitdiffstats
path: root/drivers/usb/serial
diff options
context:
space:
mode:
authorJason Wessel2008-09-08 15:53:37 +0200
committerLinus Torvalds2008-09-09 00:37:07 +0200
commit06dd881f59b3c07a430cdcbef2197f9b6dc79ae8 (patch)
treebcbfa4c239d70d3f60f31cb86538fae8c796eaff /drivers/usb/serial
parentNFS: Restore missing hunk in NFS mount option parser (diff)
downloadkernel-qcow2-linux-06dd881f59b3c07a430cdcbef2197f9b6dc79ae8.tar.gz
kernel-qcow2-linux-06dd881f59b3c07a430cdcbef2197f9b6dc79ae8.tar.xz
kernel-qcow2-linux-06dd881f59b3c07a430cdcbef2197f9b6dc79ae8.zip
usb: fix null deferences in low level usb serial
The hw interface drivers for the usb serial devices deference the tty structure to set up the parameters for the initial console. The tty structure should be passed as a parameter to the set_termios() call. Signed-off-by: Jason Wessel <jason.wessel@windriver.com> Signed-off-by: Alan Cox <alan@redhat.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/usb/serial')
-rw-r--r--drivers/usb/serial/console.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/serial/console.c b/drivers/usb/serial/console.c
index 7b74238ad1c7..e980766bb84b 100644
--- a/drivers/usb/serial/console.c
+++ b/drivers/usb/serial/console.c
@@ -161,7 +161,7 @@ static int usb_console_setup(struct console *co, char *options)
if (serial->type->set_termios) {
termios->c_cflag = cflag;
tty_termios_encode_baud_rate(termios, baud, baud);
- serial->type->set_termios(NULL, port, &dummy);
+ serial->type->set_termios(tty, port, &dummy);
port->port.tty = NULL;
kfree(termios);