projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6f60b34
)
USB: iuu_phoenix: remove unnecessary urb kill on close
author
Johan Hovold
<jhovold@gmail.com>
Thu, 21 Mar 2013 11:36:20 +0000
(12:36 +0100)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Mon, 25 Mar 2013 20:39:22 +0000
(13:39 -0700)
Remove kill of interrupt-in urb on close as it has never been submitted.
Signed-off-by: Johan Hovold <jhovold@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/serial/iuu_phoenix.c
patch
|
blob
|
history
diff --git
a/drivers/usb/serial/iuu_phoenix.c
b/drivers/usb/serial/iuu_phoenix.c
index ff77027160aab7eca0ac78e4f78ae1c8e7f01877..a3bfcb37f733cd578187690c25a076c4bb54a411 100644
(file)
--- a/
drivers/usb/serial/iuu_phoenix.c
+++ b/
drivers/usb/serial/iuu_phoenix.c
@@
-957,7
+957,6
@@
static void iuu_close(struct usb_serial_port *port)
dev_dbg(&port->dev, "%s - shutting down urbs\n", __func__);
usb_kill_urb(port->write_urb);
usb_kill_urb(port->read_urb);
- usb_kill_urb(port->interrupt_in_urb);
iuu_led(port, 0, 0, 0xF000, 0xFF);
}
}