This is a note to let you know that I've just added the patch titled USB: serial: fix Treo/Kyocera interrrupt-in urb context to the 3.0-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: usb-serial-fix-treo-kyocera-interrrupt-in-urb-context.patch and it can be found in the queue-3.0 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 5f8e2c07d75967ee49a5da1d21ddf5f50d48cda0 Mon Sep 17 00:00:00 2001 From: Johan Hovold <jhovold@xxxxxxxxx> Date: Mon, 27 May 2013 14:44:37 +0200 Subject: USB: serial: fix Treo/Kyocera interrrupt-in urb context From: Johan Hovold <jhovold@xxxxxxxxx> 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@xxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/usb/serial/visor.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/usb/serial/visor.c +++ b/drivers/usb/serial/visor.c @@ -600,6 +600,7 @@ static int treo_attach(struct usb_serial dest->bulk_in_endpointAddress = src->bulk_in_endpointAddress;\ dest->bulk_in_buffer = src->bulk_in_buffer; \ 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; \ Patches currently in stable-queue which might be from jhovold@xxxxxxxxx are queue-3.0/usb-serial-fix-treo-kyocera-interrrupt-in-urb-context.patch queue-3.0/usb-mos7720-fix-dma-to-stack.patch queue-3.0/usb-iuu_phoenix-fix-bulk-message-timeout.patch queue-3.0/usb-whiteheat-fix-broken-port-configuration.patch queue-3.0/usb-mos7720-fix-hardware-flow-control.patch queue-3.0/usb-keyspan-fix-bogus-array-index.patch queue-3.0/usb-ark3116-fix-control-message-timeout.patch queue-3.0/usb-mos7720-fix-message-timeouts.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html