diff options
author | Mariusz Kozlowski <m.kozlowski@tuxland.pl> | 2006-11-08 09:36:38 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-12-01 17:23:34 -0500 |
commit | 5505c2261eb5e7a6ff851afbe7f77d54d960e83b (patch) | |
tree | c2889e78196efd65ce79c654a642f5c0065eee3d | |
parent | 1cadc1378fe9cdee9515842a4bf9f42228448ad2 (diff) |
usb: kobil_sct kill urb cleanup
- usb_kill_urb() cleanup
Signed-off-by: Mariusz Kozlowski <m.kozlowski@tuxland.pl>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/usb/serial/kobil_sct.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/usb/serial/kobil_sct.c b/drivers/usb/serial/kobil_sct.c index 8dd2afa2fca8..237289920f03 100644 --- a/drivers/usb/serial/kobil_sct.c +++ b/drivers/usb/serial/kobil_sct.c | |||
@@ -353,8 +353,7 @@ static void kobil_close (struct usb_serial_port *port, struct file *filp) | |||
353 | usb_free_urb( port->write_urb ); | 353 | usb_free_urb( port->write_urb ); |
354 | port->write_urb = NULL; | 354 | port->write_urb = NULL; |
355 | } | 355 | } |
356 | if (port->interrupt_in_urb) | 356 | usb_kill_urb(port->interrupt_in_urb); |
357 | usb_kill_urb(port->interrupt_in_urb); | ||
358 | } | 357 | } |
359 | 358 | ||
360 | 359 | ||