diff options
author | Elina Pasheva <epasheva@sierrawireless.com> | 2009-05-12 16:12:24 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-06-16 00:44:45 -0400 |
commit | 238ebd138c9704e1162030c1e600bc06142cb2c8 (patch) | |
tree | 9e069a3e31e6471e9d62ee7938aa39a4daa300fd /drivers/usb/serial/sierra.c | |
parent | 72fda3ca6fc14662bb385d1e39e9e00af15b200d (diff) |
USB: serial: sierra driver zero length packet fix
- Fixed a problem with transferring packets with size a multiple of Bulk
Xfer size in function sierra_write(). Added transfer flag
URB_ZERO_PACKET before submitting the urb to trigger Zero-length data
transfer when packet size is a multiple of Bulk Xfer.
Signed-off-by: Elina Pasheva <epasheva@sierrawireless.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/serial/sierra.c')
-rw-r--r-- | drivers/usb/serial/sierra.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/usb/serial/sierra.c b/drivers/usb/serial/sierra.c index f494c5f659e2..9d11fe47633b 100644 --- a/drivers/usb/serial/sierra.c +++ b/drivers/usb/serial/sierra.c | |||
@@ -17,7 +17,7 @@ | |||
17 | Whom based his on the Keyspan driver by Hugh Blemings <hugh@blemings.org> | 17 | Whom based his on the Keyspan driver by Hugh Blemings <hugh@blemings.org> |
18 | */ | 18 | */ |
19 | 19 | ||
20 | #define DRIVER_VERSION "v.1.3.6" | 20 | #define DRIVER_VERSION "v.1.3.7" |
21 | #define DRIVER_AUTHOR "Kevin Lloyd, Elina Pasheva, Matthew Safar, Rory Filer" | 21 | #define DRIVER_AUTHOR "Kevin Lloyd, Elina Pasheva, Matthew Safar, Rory Filer" |
22 | #define DRIVER_DESC "USB Driver for Sierra Wireless USB modems" | 22 | #define DRIVER_DESC "USB Driver for Sierra Wireless USB modems" |
23 | 23 | ||
@@ -474,6 +474,9 @@ static int sierra_write(struct tty_struct *tty, struct usb_serial_port *port, | |||
474 | port->bulk_out_endpointAddress), | 474 | port->bulk_out_endpointAddress), |
475 | buffer, writesize, sierra_outdat_callback, port); | 475 | buffer, writesize, sierra_outdat_callback, port); |
476 | 476 | ||
477 | /* Handle the need to send a zero length packet */ | ||
478 | urb->transfer_flags |= URB_ZERO_PACKET; | ||
479 | |||
477 | /* send it down the pipe */ | 480 | /* send it down the pipe */ |
478 | retval = usb_submit_urb(urb, GFP_ATOMIC); | 481 | retval = usb_submit_urb(urb, GFP_ATOMIC); |
479 | if (retval) { | 482 | if (retval) { |