diff options
-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); |