diff options
author | Michael Tokarev <mjt@tls.msk.ru> | 2010-08-06 18:49:21 +0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-08-26 16:44:04 -0700 |
commit | b8191910b88ec5bba5b5050fd28be6899a11141b (patch) | |
tree | b46b088cc6036ef700edff724a6db89a6a8d0d8f /drivers/usb | |
parent | 954c1c9bd12fe0510c857f2492e21942efb5c8cd (diff) | |
download | lwn-b8191910b88ec5bba5b5050fd28be6899a11141b.tar.gz lwn-b8191910b88ec5bba5b5050fd28be6899a11141b.zip |
USB: option: add Celot CT-650
commit 76078dc4fc389185fe467d33428f259ea9e69807 upstream.
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/serial/option.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c index 20d1585547d0..0e8abb5b228c 100644 --- a/drivers/usb/serial/option.c +++ b/drivers/usb/serial/option.c @@ -389,6 +389,10 @@ static int option_resume(struct usb_serial *serial); #define OLIVETTI_VENDOR_ID 0x0b3c #define OLIVETTI_PRODUCT_OLICARD100 0xc000 +/* Celot products */ +#define CELOT_VENDOR_ID 0x211f +#define CELOT_PRODUCT_CT680M 0x6801 + /* some devices interfaces need special handling due to a number of reasons */ enum option_blacklist_reason { OPTION_BLACKLIST_NONE = 0, @@ -912,10 +916,9 @@ static const struct usb_device_id option_ids[] = { { USB_DEVICE(PIRELLI_VENDOR_ID, PIRELLI_PRODUCT_100F) }, { USB_DEVICE(PIRELLI_VENDOR_ID, PIRELLI_PRODUCT_1011)}, { USB_DEVICE(PIRELLI_VENDOR_ID, PIRELLI_PRODUCT_1012)}, - { USB_DEVICE(CINTERION_VENDOR_ID, 0x0047) }, - { USB_DEVICE(OLIVETTI_VENDOR_ID, OLIVETTI_PRODUCT_OLICARD100) }, + { USB_DEVICE(CELOT_VENDOR_ID, CELOT_PRODUCT_CT680M) }, /* CT-650 CDMA 450 1xEVDO modem */ { } /* Terminating entry */ }; MODULE_DEVICE_TABLE(usb, option_ids); |