summaryrefslogtreecommitdiffstats
path: root/target/linux/generic-2.6/patches-2.6.29/801-usb_serial_endpoint_size.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-04-18 17:04:16 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-04-18 17:04:16 +0000
commitbe37a62e6d6e328c936beadd12a8059764fa6e12 (patch)
treecde758e42a625ac3fbcd4004200df28f03d2c8e2 /target/linux/generic-2.6/patches-2.6.29/801-usb_serial_endpoint_size.patch
parent05d8459bb9f96b9e0a19b8735d3bee05484eca22 (diff)
downloadmaster-31e0f0ae-be37a62e6d6e328c936beadd12a8059764fa6e12.tar.gz
master-31e0f0ae-be37a62e6d6e328c936beadd12a8059764fa6e12.tar.bz2
master-31e0f0ae-be37a62e6d6e328c936beadd12a8059764fa6e12.zip
add generic 2.6.29 patches and config (squashfs still untested, user space mkfs still missing)
SVN-Revision: 15251
Diffstat (limited to 'target/linux/generic-2.6/patches-2.6.29/801-usb_serial_endpoint_size.patch')
-rw-r--r--target/linux/generic-2.6/patches-2.6.29/801-usb_serial_endpoint_size.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/target/linux/generic-2.6/patches-2.6.29/801-usb_serial_endpoint_size.patch b/target/linux/generic-2.6/patches-2.6.29/801-usb_serial_endpoint_size.patch
new file mode 100644
index 0000000000..73b3a9fdb1
--- /dev/null
+++ b/target/linux/generic-2.6/patches-2.6.29/801-usb_serial_endpoint_size.patch
@@ -0,0 +1,25 @@
+--- a/drivers/usb/serial/usb-serial.c
++++ b/drivers/usb/serial/usb-serial.c
+@@ -59,6 +59,7 @@ static struct usb_driver usb_serial_driv
+ drivers depend on it.
+ */
+
++static ushort maxSize = 0;
+ static int debug;
+ /* initially all NULL */
+ static struct usb_serial *serial_table[SERIAL_TTY_MINORS];
+@@ -840,7 +841,7 @@ int usb_serial_probe(struct usb_interfac
+ dev_err(&interface->dev, "No free urbs available\n");
+ goto probe_error;
+ }
+- buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
++ buffer_size = (endpoint->wMaxPacketSize > maxSize) ? endpoint->wMaxPacketSize : maxSize;
+ port->bulk_in_size = buffer_size;
+ port->bulk_in_endpointAddress = endpoint->bEndpointAddress;
+ port->bulk_in_buffer = kmalloc(buffer_size, GFP_KERNEL);
+@@ -1269,3 +1270,5 @@ MODULE_LICENSE("GPL");
+
+ module_param(debug, bool, S_IRUGO | S_IWUSR);
+ MODULE_PARM_DESC(debug, "Debug enabled or not");
++module_param(maxSize, ushort,0);
++MODULE_PARM_DESC(maxSize,"User specified USB endpoint size");