diff options
author | Johan Hovold <jhovold@gmail.com> | 2013-05-27 14:44:37 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-06-13 09:44:56 -0700 |
commit | 23269c0adf51bd719249016080d896f888d57c92 (patch) | |
tree | 8bafcfdd3d2ba215810b702159b4d86fb92e1431 /drivers | |
parent | d3a677e63a19355155ff83acf46d1ede8845ffaf (diff) |
USB: serial: fix Treo/Kyocera interrrupt-in urb context
commit 5f8e2c07d75967ee49a5da1d21ddf5f50d48cda0 upstream.
The first and second interrupt-in urbs are swapped for some Treo/Kyocera
devices, but the urb context was never updated with the new port.
Signed-off-by: Johan Hovold <jhovold@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/serial/visor.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/serial/visor.c b/drivers/usb/serial/visor.c index 53f77097952..b3afd19341f 100644 --- a/drivers/usb/serial/visor.c +++ b/drivers/usb/serial/visor.c @@ -608,6 +608,7 @@ static int treo_attach(struct usb_serial *serial) dest->bulk_in_buffer = src->bulk_in_buffer; \ dest->bulk_in_size = src->bulk_in_size; \ dest->interrupt_in_urb = src->interrupt_in_urb; \ + dest->interrupt_in_urb->context = dest; \ dest->interrupt_in_endpointAddress = \ src->interrupt_in_endpointAddress;\ dest->interrupt_in_buffer = src->interrupt_in_buffer; \ |