aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic-2.6/patches-2.6.26/801-usb_serial_endpoint_size.patch
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2009-05-07 12:21:02 +0000
committerFlorian Fainelli <florian@openwrt.org>2009-05-07 12:21:02 +0000
commit9eb1a459851213dcafbcdaabdfc2985a877090af (patch)
tree05c8594d9f3b173ad916bd2c6856cf4e79390f61 /target/linux/generic-2.6/patches-2.6.26/801-usb_serial_endpoint_size.patch
parent6adafe0bc02fc4d31d1de870be6cb8f88356bb7a (diff)
downloadupstream-9eb1a459851213dcafbcdaabdfc2985a877090af.tar.gz
upstream-9eb1a459851213dcafbcdaabdfc2985a877090af.tar.bz2
upstream-9eb1a459851213dcafbcdaabdfc2985a877090af.zip
[kernel] remove 2.6.26 since there are no remaining candidates for it
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15666 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic-2.6/patches-2.6.26/801-usb_serial_endpoint_size.patch')
-rw-r--r--target/linux/generic-2.6/patches-2.6.26/801-usb_serial_endpoint_size.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/target/linux/generic-2.6/patches-2.6.26/801-usb_serial_endpoint_size.patch b/target/linux/generic-2.6/patches-2.6.26/801-usb_serial_endpoint_size.patch
deleted file mode 100644
index d1e2c5bef0..0000000000
--- a/target/linux/generic-2.6/patches-2.6.26/801-usb_serial_endpoint_size.patch
+++ /dev/null
@@ -1,25 +0,0 @@
---- a/drivers/usb/serial/usb-serial.c
-+++ b/drivers/usb/serial/usb-serial.c
-@@ -58,6 +58,7 @@ static struct usb_driver usb_serial_driv
- drivers depend on it.
- */
-
-+static ushort maxSize = 0;
- static int debug;
- static struct usb_serial *serial_table[SERIAL_TTY_MINORS]; /* initially all NULL */
- static DEFINE_MUTEX(table_lock);
-@@ -814,7 +815,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);
-@@ -1228,3 +1229,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");