aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/serial/ch341.c
diff options
context:
space:
mode:
authorJohan Hovold <jhovold@gmail.com>2010-03-17 18:00:45 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2010-05-20 16:21:33 -0400
commitf26788da3b342099d2b02d99ba1cb7f154d6ef7b (patch)
tree91b6af77130e5f93b9226254a651434af5d8340b /drivers/usb/serial/ch341.c
parentec3ee5086c1e1b883292eaf795b5c1b0c25bcffe (diff)
USB: serial: refactor generic close
Export usb_serial_generic_close so that drivers can easily kill the read and write urb and make sure that the write fifo is reset. Signed-off-by: Johan Hovold <jhovold@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/serial/ch341.c')
-rw-r--r--drivers/usb/serial/ch341.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/usb/serial/ch341.c b/drivers/usb/serial/ch341.c
index 7e8e39818414..63f7cc45bcac 100644
--- a/drivers/usb/serial/ch341.c
+++ b/drivers/usb/serial/ch341.c
@@ -305,10 +305,7 @@ static void ch341_close(struct usb_serial_port *port)
305{ 305{
306 dbg("%s - port %d", __func__, port->number); 306 dbg("%s - port %d", __func__, port->number);
307 307
308 /* shutdown our urbs */ 308 usb_serial_generic_close(port);
309 dbg("%s - shutting down urbs", __func__);
310 usb_kill_urb(port->write_urb);
311 usb_kill_urb(port->read_urb);
312 usb_kill_urb(port->interrupt_in_urb); 309 usb_kill_urb(port->interrupt_in_urb);
313} 310}
314 311