diff options
author | David Cluytens <david.cluytens@gmail.com> | 2013-12-03 14:18:57 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-12-04 16:53:03 -0800 |
commit | 3b59d16c513da258ec8f6a0b4db85f257a0380d6 (patch) | |
tree | d5f50186794e1283dfa2f6cc9ef7de013f5c1fab | |
parent | cb292ce222cb5ad5b8b3f9fc4b74b8109fb16c19 (diff) | |
download | talos-op-linux-3b59d16c513da258ec8f6a0b4db85f257a0380d6.tar.gz talos-op-linux-3b59d16c513da258ec8f6a0b4db85f257a0380d6.zip |
USB: cdc-acm: Added support for the Lenovo RD02-D400 USB Modem
Signed-off-by: David Cluytens <david.cluytens@gmail.com>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/usb/class/cdc-acm.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/usb/class/cdc-acm.c b/drivers/usb/class/cdc-acm.c index 3e7560f004f8..e8404319ca68 100644 --- a/drivers/usb/class/cdc-acm.c +++ b/drivers/usb/class/cdc-acm.c @@ -1515,6 +1515,8 @@ static int acm_reset_resume(struct usb_interface *intf) static const struct usb_device_id acm_ids[] = { /* quirky and broken devices */ + { USB_DEVICE(0x17ef, 0x7000), /* Lenovo USB modem */ + .driver_info = NO_UNION_NORMAL, },/* has no union descriptor */ { USB_DEVICE(0x0870, 0x0001), /* Metricom GS Modem */ .driver_info = NO_UNION_NORMAL, /* has no union descriptor */ }, |