diff options
author | Johan Hovold <jhovold@gmail.com> | 2010-03-17 18:00:45 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-05-20 16:21:33 -0400 |
commit | f26788da3b342099d2b02d99ba1cb7f154d6ef7b (patch) | |
tree | 91b6af77130e5f93b9226254a651434af5d8340b /drivers/usb/serial/belkin_sa.c | |
parent | ec3ee5086c1e1b883292eaf795b5c1b0c25bcffe (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/belkin_sa.c')
-rw-r--r-- | drivers/usb/serial/belkin_sa.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/usb/serial/belkin_sa.c b/drivers/usb/serial/belkin_sa.c index 1295e44e3f1c..bdab31afc37d 100644 --- a/drivers/usb/serial/belkin_sa.c +++ b/drivers/usb/serial/belkin_sa.c | |||
@@ -246,9 +246,7 @@ static void belkin_sa_close(struct usb_serial_port *port) | |||
246 | { | 246 | { |
247 | dbg("%s port %d", __func__, port->number); | 247 | dbg("%s port %d", __func__, port->number); |
248 | 248 | ||
249 | /* shutdown our bulk reads and writes */ | 249 | usb_serial_generic_close(port); |
250 | usb_kill_urb(port->write_urb); | ||
251 | usb_kill_urb(port->read_urb); | ||
252 | usb_kill_urb(port->interrupt_in_urb); | 250 | usb_kill_urb(port->interrupt_in_urb); |
253 | } /* belkin_sa_close */ | 251 | } /* belkin_sa_close */ |
254 | 252 | ||