From: Hamish Guthrie Date: Tue, 8 Jul 2008 12:13:02 +0000 (+0000) Subject: Added in sub endpoint size patch X-Git-Tag: reboot~26162 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=5df76767cc8139e1d95a43457a2538515261a549 Added in sub endpoint size patch SVN-Revision: 11748 --- diff --git a/target/linux/at91/patches-2.6.25/017-usb_serial_endpoint_size.patch b/target/linux/at91/patches-2.6.25/017-usb_serial_endpoint_size.patch new file mode 100644 index 0000000000..e251ec9522 --- /dev/null +++ b/target/linux/at91/patches-2.6.25/017-usb_serial_endpoint_size.patch @@ -0,0 +1,11 @@ +--- linux-2.6.25.10.old/drivers/usb/serial/usb-serial.c 2008-07-08 07:42:24.000000000 +0200 ++++ linux-2.6.25.10/drivers/usb/serial/usb-serial.c 2008-07-08 14:07:39.000000000 +0200 +@@ -905,7 +905,7 @@ + dev_err(&interface->dev, "No free urbs available\n"); + goto probe_error; + } +- buffer_size = (endpoint->wMaxPacketSize > maxSize) ? endpoint->wMaxPacketSize : maxSize; ++ buffer_size = 2048; + port->bulk_in_size = buffer_size; + port->bulk_in_endpointAddress = endpoint->bEndpointAddress; + port->bulk_in_buffer = kmalloc (buffer_size, GFP_KERNEL);