aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic-2.6/patches-2.6.23/801-usb_serial_endpoint_size.patch
diff options
context:
space:
mode:
authorImre Kaloz <kaloz@openwrt.org>2009-06-01 18:16:10 +0000
committerImre Kaloz <kaloz@openwrt.org>2009-06-01 18:16:10 +0000
commit671a899cc41ebadd8c88a8fc130e52578e2eb2fe (patch)
tree7b38bdc75edd61a80a8dd1846005185534667ae9 /target/linux/generic-2.6/patches-2.6.23/801-usb_serial_endpoint_size.patch
parent87a6e2bb180aad33411f9d13392376891f73b4b1 (diff)
downloadmaster-187ad058-671a899cc41ebadd8c88a8fc130e52578e2eb2fe.tar.gz
master-187ad058-671a899cc41ebadd8c88a8fc130e52578e2eb2fe.tar.bz2
master-187ad058-671a899cc41ebadd8c88a8fc130e52578e2eb2fe.zip
remove 2.6.23 support, as the last target using that has been nuked, too
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16275 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic-2.6/patches-2.6.23/801-usb_serial_endpoint_size.patch')
-rw-r--r--target/linux/generic-2.6/patches-2.6.23/801-usb_serial_endpoint_size.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/target/linux/generic-2.6/patches-2.6.23/801-usb_serial_endpoint_size.patch b/target/linux/generic-2.6/patches-2.6.23/801-usb_serial_endpoint_size.patch
deleted file mode 100644
index 24ee35cba0..0000000000
--- a/target/linux/generic-2.6/patches-2.6.23/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);
-@@ -866,7 +867,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);
-@@ -1276,3 +1277,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");