diff options
author | Johan Hovold <johan@kernel.org> | 2017-03-02 12:51:17 +0100 |
---|---|---|
committer | Johan Hovold <johan@kernel.org> | 2017-03-16 10:33:40 +0100 |
commit | ff0c5703a4b11fca86886e5b7ce40c396bef8381 (patch) | |
tree | 130d3982a3491f00384e958dda192baeaa2e8d38 /include/linux/usb | |
parent | 1546e6aecb2490c4510bcd953cbb522d85957791 (diff) | |
download | linux-stable-ff0c5703a4b11fca86886e5b7ce40c396bef8381.tar.gz linux-stable-ff0c5703a4b11fca86886e5b7ce40c396bef8381.tar.bz2 linux-stable-ff0c5703a4b11fca86886e5b7ce40c396bef8381.zip |
USB: serial: allow up to 16 ports per device
Raise the arbitrary limit of how many ports a single device can claim
from eight to 16.
This specifically enables the upper eight ports of some mxuport devices.
Signed-off-by: Johan Hovold <johan@kernel.org>
Diffstat (limited to 'include/linux/usb')
-rw-r--r-- | include/linux/usb/serial.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/usb/serial.h b/include/linux/usb/serial.h index 85b475933848..ee4394d8932f 100644 --- a/include/linux/usb/serial.h +++ b/include/linux/usb/serial.h @@ -20,7 +20,7 @@ #include <linux/kfifo.h> /* The maximum number of ports one device can grab at once */ -#define MAX_NUM_PORTS 8 +#define MAX_NUM_PORTS 16 /* parity check flag */ #define RELEVANT_IFLAG(iflag) (iflag & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK)) |