diff options
Diffstat (limited to 'drivers/usb/serial/usb_debug.c')
-rw-r--r-- | drivers/usb/serial/usb_debug.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/usb/serial/usb_debug.c b/drivers/usb/serial/usb_debug.c index 6c9cbb59552a..a9427a8b8672 100644 --- a/drivers/usb/serial/usb_debug.c +++ b/drivers/usb/serial/usb_debug.c | |||
@@ -15,6 +15,7 @@ | |||
15 | #include <linux/usb.h> | 15 | #include <linux/usb.h> |
16 | #include <linux/usb/serial.h> | 16 | #include <linux/usb/serial.h> |
17 | 17 | ||
18 | #define URB_DEBUG_MAX_IN_FLIGHT_URBS 4000 | ||
18 | #define USB_DEBUG_MAX_PACKET_SIZE 8 | 19 | #define USB_DEBUG_MAX_PACKET_SIZE 8 |
19 | 20 | ||
20 | static struct usb_device_id id_table [] = { | 21 | static struct usb_device_id id_table [] = { |
@@ -46,6 +47,7 @@ static struct usb_serial_driver debug_device = { | |||
46 | .id_table = id_table, | 47 | .id_table = id_table, |
47 | .num_ports = 1, | 48 | .num_ports = 1, |
48 | .open = usb_debug_open, | 49 | .open = usb_debug_open, |
50 | .max_in_flight_urbs = URB_DEBUG_MAX_IN_FLIGHT_URBS, | ||
49 | }; | 51 | }; |
50 | 52 | ||
51 | static int __init debug_init(void) | 53 | static int __init debug_init(void) |