aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/usb/serial
diff options
context:
space:
mode:
authorJohan Hovold <johan@kernel.org>2014-08-18 18:14:52 +0200
committerJohan Hovold <johan@kernel.org>2014-09-01 12:04:27 +0200
commitb9f040389e23fb95fde36cb0a3c2c516fb3e9d1c (patch)
tree9afe0fbfd69ab390e4f313676f5d6043b85231c2 /drivers/usb/serial
parentUSB: pl2303: use divisors for unsupported baud rates (diff)
downloadwireguard-linux-b9f040389e23fb95fde36cb0a3c2c516fb3e9d1c.tar.xz
wireguard-linux-b9f040389e23fb95fde36cb0a3c2c516fb3e9d1c.zip
USB: serial: add support for multi-port simple drivers
Add support for multi-port simple drivers. Signed-off-by: Johan Hovold <johan@kernel.org>
Diffstat (limited to 'drivers/usb/serial')
-rw-r--r--drivers/usb/serial/usb-serial-simple.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/usb/serial/usb-serial-simple.c b/drivers/usb/serial/usb-serial-simple.c
index fb79775447b0..02cb77a1e79d 100644
--- a/drivers/usb/serial/usb-serial-simple.c
+++ b/drivers/usb/serial/usb-serial-simple.c
@@ -20,7 +20,7 @@
#include <linux/usb.h>
#include <linux/usb/serial.h>
-#define DEVICE(vendor, IDS) \
+#define DEVICE_N(vendor, IDS, nport) \
static const struct usb_device_id vendor##_id_table[] = { \
IDS(), \
{ }, \
@@ -31,9 +31,10 @@ static struct usb_serial_driver vendor##_device = { \
.name = #vendor, \
}, \
.id_table = vendor##_id_table, \
- .num_ports = 1, \
+ .num_ports = nport, \
};
+#define DEVICE(vendor, IDS) DEVICE_N(vendor, IDS, 1)
/* ZIO Motherboard USB driver */
#define ZIO_IDS() \