diff options
author | Jean-Christian de Rivaz <jc@eclis.ch> | 2012-10-10 08:49:02 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-10-11 15:18:49 -0400 |
commit | e7d491a19d3e3aac544070293891a2542ae0c565 (patch) | |
tree | c67e338afc687d37f365c753614de3b395c5e33a /drivers/usb/class | |
parent | aac9453b65c5d41eac133095586379be5b923a1e (diff) |
Add CDC-ACM support for the CX93010-2x UCMxx USB Modem
This USB V.92/V.32bis Controllered Modem have the USB vendor ID 0x0572
and device ID 0x1340. It need the NO_UNION_NORMAL quirk to be recognized.
Reference:
http://www.conexant.com/servlets/DownloadServlet/DSH-201723-005.pdf?docid=1725&revid=5
See idVendor and idProduct in table 6-1. Device Descriptors
Signed-off-by: Jean-Christian de Rivaz <jc@eclis.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/usb/class')
-rw-r--r-- | drivers/usb/class/cdc-acm.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/usb/class/cdc-acm.c b/drivers/usb/class/cdc-acm.c index 36f2be4def2f..981f2132d128 100644 --- a/drivers/usb/class/cdc-acm.c +++ b/drivers/usb/class/cdc-acm.c | |||
@@ -1551,6 +1551,9 @@ static const struct usb_device_id acm_ids[] = { | |||
1551 | Maybe we should define a new | 1551 | Maybe we should define a new |
1552 | quirk for this. */ | 1552 | quirk for this. */ |
1553 | }, | 1553 | }, |
1554 | { USB_DEVICE(0x0572, 0x1340), /* Conexant CX93010-2x UCMxx */ | ||
1555 | .driver_info = NO_UNION_NORMAL, | ||
1556 | }, | ||
1554 | { USB_DEVICE(0x1bbb, 0x0003), /* Alcatel OT-I650 */ | 1557 | { USB_DEVICE(0x1bbb, 0x0003), /* Alcatel OT-I650 */ |
1555 | .driver_info = NO_UNION_NORMAL, /* reports zero length descriptor */ | 1558 | .driver_info = NO_UNION_NORMAL, /* reports zero length descriptor */ |
1556 | }, | 1559 | }, |