aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/serial/keyspan.c
diff options
context:
space:
mode:
authorAlan Cox <alan@lxorguk.ukuu.org.uk>2008-01-03 11:59:04 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2008-02-01 17:34:42 -0500
commit3004e5379a525d848bbe8ddff2c534ac0fb04e2c (patch)
treefa8b89f8be36ef50a1a3750f2bd1c1c03ec9fbdf /drivers/usb/serial/keyspan.c
parent24e1c13c93cbdd05e4b7ea921c0050b036555adc (diff)
USB: keyspan: Fix oops
If we get a data URB back from the hardware after we have put the tty to bed we go kaboom. Fortunately all we need to do is process the URB without trying to ram its contents down the throat of an ex-tty. Cc: stable <stable@kernel.org> Signed-off-by: Alan Cox <alan@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/serial/keyspan.c')
-rw-r--r--drivers/usb/serial/keyspan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/serial/keyspan.c b/drivers/usb/serial/keyspan.c
index 7c069a02c1dd..ea7bba69f4da 100644
--- a/drivers/usb/serial/keyspan.c
+++ b/drivers/usb/serial/keyspan.c
@@ -838,7 +838,7 @@ static void usa49_indat_callback(struct urb *urb)
838 838
839 port = (struct usb_serial_port *) urb->context; 839 port = (struct usb_serial_port *) urb->context;
840 tty = port->tty; 840 tty = port->tty;
841 if (urb->actual_length) { 841 if (tty && urb->actual_length) {
842 /* 0x80 bit is error flag */ 842 /* 0x80 bit is error flag */
843 if ((data[0] & 0x80) == 0) { 843 if ((data[0] & 0x80) == 0) {
844 /* no error on any byte */ 844 /* no error on any byte */