diff options
author | Hamish Guthrie <hcg@openwrt.org> | 2008-07-08 12:13:02 +0000 |
---|---|---|
committer | Hamish Guthrie <hcg@openwrt.org> | 2008-07-08 12:13:02 +0000 |
commit | 6cf2b6fb1f2b7a4102b0c2372de4d33195e10426 (patch) | |
tree | 59cbd52de6bead350459d75349d0d4baa00857a0 /target | |
parent | 1c2ca693a88c582ec8d3a51001bc639d63fd82fb (diff) | |
download | upstream-6cf2b6fb1f2b7a4102b0c2372de4d33195e10426.tar.gz upstream-6cf2b6fb1f2b7a4102b0c2372de4d33195e10426.tar.bz2 upstream-6cf2b6fb1f2b7a4102b0c2372de4d33195e10426.zip |
Added in sub endpoint size patch
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11748 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/at91/patches-2.6.25/017-usb_serial_endpoint_size.patch | 11 |
1 files changed, 11 insertions, 0 deletions
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); |