patch-2.4.12 linux/drivers/usb/serial/keyspan_pda.c

Next file: linux/drivers/usb/serial/mct_u232.c
Previous file: linux/drivers/usb/serial/keyspan.c
Back to the patch index
Back to the overall index

diff -u --recursive --new-file v2.4.11/linux/drivers/usb/serial/keyspan_pda.c linux/drivers/usb/serial/keyspan_pda.c
@@ -743,13 +743,15 @@
 	--port->open_count;
 
 	if (port->open_count <= 0) {
-		/* the normal serial device seems to always shut off DTR and RTS now */
-		if (port->tty->termios->c_cflag & HUPCL)
-			keyspan_pda_set_modem_info(serial, 0);
+		if (serial->dev) {
+			/* the normal serial device seems to always shut off DTR and RTS now */
+			if (port->tty->termios->c_cflag & HUPCL)
+				keyspan_pda_set_modem_info(serial, 0);
 
-		/* shutdown our bulk reads and writes */
-		usb_unlink_urb (port->write_urb);
-		usb_unlink_urb (port->interrupt_in_urb);
+			/* shutdown our bulk reads and writes */
+			usb_unlink_urb (port->write_urb);
+			usb_unlink_urb (port->interrupt_in_urb);
+		}
 		port->active = 0;
 		port->open_count = 0;
 	}

FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)