USB: cp210x: increase bulk-in buffer size to 256 byte
The cp210x requires a bulk-in buffer larger than endpoint size to keep up at high baudrates without loosing data. Signed-off-by: Johan Hovold <jhovold@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
d4e598f65d
commit
aea006b93a
|
@ -138,6 +138,7 @@ static struct usb_serial_driver cp210x_device = {
|
||||||
.usb_driver = &cp210x_driver,
|
.usb_driver = &cp210x_driver,
|
||||||
.id_table = id_table,
|
.id_table = id_table,
|
||||||
.num_ports = 1,
|
.num_ports = 1,
|
||||||
|
.bulk_in_size = 256,
|
||||||
.bulk_out_size = 256,
|
.bulk_out_size = 256,
|
||||||
.open = cp210x_open,
|
.open = cp210x_open,
|
||||||
.close = cp210x_close,
|
.close = cp210x_close,
|
||||||
|
|
Loading…
Reference in New Issue