Commit f1632df3 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

USB: option: increase outgoing buffer size and number

This should speed up the option driver's upload speed quite a bit.  It has been tested by a number of different people on different devices with success.

Cc: Roland Wolters <roland.wolters@credativ.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 50de36f7
......@@ -522,9 +522,9 @@ static int debug;
/* per port private data */
#define N_IN_URB 4
#define N_OUT_URB 1
#define N_OUT_URB 4
#define IN_BUFLEN 4096
#define OUT_BUFLEN 128
#define OUT_BUFLEN 4096
struct option_port_private {
/* Input endpoints and buffer for this port */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment