diff options
author | Johan Hovold <johan@kernel.org> | 2014-08-18 20:23:19 +0400 |
---|---|---|
committer | Johan Hovold <johan@kernel.org> | 2014-09-01 14:04:27 +0400 |
commit | cff9c2339a6d5105d7f6b1f9a96dd1d239cc76ac (patch) | |
tree | 3ed87156368bf339c9efe3055184090be2e4d1cd /drivers/usb/serial/usb-serial-simple.c | |
parent | c5cd24d7b179a415df263e5b18b72f6e3aaf81e0 (diff) | |
download | linux-cff9c2339a6d5105d7f6b1f9a96dd1d239cc76ac.tar.xz |
USB: serial: add Medtronic CareLink USB driver
Add simple driver for Medtronic CareLink USB devices.
Reported-by: Benjamin West <bewest@gmail.com>
Tested-by: Benjamin West <bewest@gmail.com>
Signed-off-by: Johan Hovold <johan@kernel.org>
Diffstat (limited to 'drivers/usb/serial/usb-serial-simple.c')
-rw-r--r-- | drivers/usb/serial/usb-serial-simple.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/usb/serial/usb-serial-simple.c b/drivers/usb/serial/usb-serial-simple.c index 5565308c870c..7064eb8d6142 100644 --- a/drivers/usb/serial/usb-serial-simple.c +++ b/drivers/usb/serial/usb-serial-simple.c @@ -36,6 +36,11 @@ static struct usb_serial_driver vendor##_device = { \ #define DEVICE(vendor, IDS) DEVICE_N(vendor, IDS, 1) +/* Medtronic CareLink USB driver */ +#define CARELINK_IDS() \ + { USB_DEVICE(0x0a21, 0x8001) } /* MMT-7305WW */ +DEVICE(carelink, CARELINK_IDS); + /* ZIO Motherboard USB driver */ #define ZIO_IDS() \ { USB_DEVICE(0x1CBE, 0x0103) } @@ -88,6 +93,7 @@ DEVICE(siemens_mpi, SIEMENS_IDS); /* All of the above structures mushed into two lists */ static struct usb_serial_driver * const serial_drivers[] = { + &carelink_device, &zio_device, &funsoft_device, &flashloader_device, @@ -101,6 +107,7 @@ static struct usb_serial_driver * const serial_drivers[] = { }; static const struct usb_device_id id_table[] = { + CARELINK_IDS(), ZIO_IDS(), FUNSOFT_IDS(), FLASHLOADER_IDS(), |