diff options
author | Brennan Ashton <bashton@brennanashton.com> | 2014-08-06 11:46:44 -0400 |
---|---|---|
committer | Johan Hovold <johan@kernel.org> | 2014-08-18 07:08:36 -0400 |
commit | d77302739d900bbca5e901a3b7ac48c907ee6c93 (patch) | |
tree | 22f8b44c6c0d45d251691f0f0e921d53d7e9c9f7 /drivers/usb | |
parent | f0e4cba2534cd88476dff920727c81350130f3c5 (diff) |
USB: option: add VIA Telecom CDS7 chipset device id
This VIA Telecom baseband processor is used is used by by u-blox in both the
FW2770 and FW2760 products and may be used in others as well.
This patch has been tested on both of these modem versions.
Signed-off-by: Brennan Ashton <bashton@brennanashton.com>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Johan Hovold <johan@kernel.org>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/serial/option.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c index 34f142be5b83..408aad1b1c98 100644 --- a/drivers/usb/serial/option.c +++ b/drivers/usb/serial/option.c | |||
@@ -494,6 +494,10 @@ static void option_instat_callback(struct urb *urb); | |||
494 | #define INOVIA_VENDOR_ID 0x20a6 | 494 | #define INOVIA_VENDOR_ID 0x20a6 |
495 | #define INOVIA_SEW858 0x1105 | 495 | #define INOVIA_SEW858 0x1105 |
496 | 496 | ||
497 | /* VIA Telecom */ | ||
498 | #define VIATELECOM_VENDOR_ID 0x15eb | ||
499 | #define VIATELECOM_PRODUCT_CDS7 0x0001 | ||
500 | |||
497 | /* some devices interfaces need special handling due to a number of reasons */ | 501 | /* some devices interfaces need special handling due to a number of reasons */ |
498 | enum option_blacklist_reason { | 502 | enum option_blacklist_reason { |
499 | OPTION_BLACKLIST_NONE = 0, | 503 | OPTION_BLACKLIST_NONE = 0, |
@@ -1724,6 +1728,7 @@ static const struct usb_device_id option_ids[] = { | |||
1724 | { USB_DEVICE_AND_INTERFACE_INFO(0x07d1, 0x3e01, 0xff, 0xff, 0xff) }, /* D-Link DWM-152/C1 */ | 1728 | { USB_DEVICE_AND_INTERFACE_INFO(0x07d1, 0x3e01, 0xff, 0xff, 0xff) }, /* D-Link DWM-152/C1 */ |
1725 | { USB_DEVICE_AND_INTERFACE_INFO(0x07d1, 0x3e02, 0xff, 0xff, 0xff) }, /* D-Link DWM-156/C1 */ | 1729 | { USB_DEVICE_AND_INTERFACE_INFO(0x07d1, 0x3e02, 0xff, 0xff, 0xff) }, /* D-Link DWM-156/C1 */ |
1726 | { USB_DEVICE(INOVIA_VENDOR_ID, INOVIA_SEW858) }, | 1730 | { USB_DEVICE(INOVIA_VENDOR_ID, INOVIA_SEW858) }, |
1731 | { USB_DEVICE(VIATELECOM_VENDOR_ID, VIATELECOM_PRODUCT_CDS7) }, | ||
1727 | { } /* Terminating entry */ | 1732 | { } /* Terminating entry */ |
1728 | }; | 1733 | }; |
1729 | MODULE_DEVICE_TABLE(usb, option_ids); | 1734 | MODULE_DEVICE_TABLE(usb, option_ids); |