diff options
author | Lonnie Mendez <lmendez19@austin.rr.com> | 2006-03-01 11:45:24 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-03-20 17:50:00 -0500 |
commit | a5c44e29e5637b5e6fe59d225eb4f438688b3849 (patch) | |
tree | 1a39af521d6be62c57f1bc39083a95aaf6eac67d /drivers/usb/serial/cypress_m8.h | |
parent | a847423905c6a8ccd6671d05f5877d893d10cd9f (diff) |
[PATCH] USB: cypress_m8: add support for the Nokia ca42-version 2 cable
This patch adds support for the Nokia ca42 version 2 cable to the
cypress_m8 driver. The device was tested by others with this patch and
found to be compatible with the cypress_m8 driver. A special note
should be taken that this cable seems to vary in the type of chipset
used. This patch supports the cable with product id 0x4101.
Signed-off-by: Lonnie Mendez <lmendez19@austin.rr.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/serial/cypress_m8.h')
-rw-r--r-- | drivers/usb/serial/cypress_m8.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/usb/serial/cypress_m8.h b/drivers/usb/serial/cypress_m8.h index 1fa119efe41a..e1c7c27e18b7 100644 --- a/drivers/usb/serial/cypress_m8.h +++ b/drivers/usb/serial/cypress_m8.h | |||
@@ -18,6 +18,10 @@ | |||
18 | /* Cypress HID->COM RS232 Adapter */ | 18 | /* Cypress HID->COM RS232 Adapter */ |
19 | #define VENDOR_ID_CYPRESS 0x04b4 | 19 | #define VENDOR_ID_CYPRESS 0x04b4 |
20 | #define PRODUCT_ID_CYPHIDCOM 0x5500 | 20 | #define PRODUCT_ID_CYPHIDCOM 0x5500 |
21 | |||
22 | /* Nokia CA-42 USB to serial cable */ | ||
23 | #define VENDOR_ID_DAZZLE 0x07d0 | ||
24 | #define PRODUCT_ID_CA42 0x4101 | ||
21 | /* End of device listing */ | 25 | /* End of device listing */ |
22 | 26 | ||
23 | /* Used for setting / requesting serial line settings */ | 27 | /* Used for setting / requesting serial line settings */ |
@@ -34,6 +38,7 @@ | |||
34 | 38 | ||
35 | #define CT_EARTHMATE 0x01 | 39 | #define CT_EARTHMATE 0x01 |
36 | #define CT_CYPHIDCOM 0x02 | 40 | #define CT_CYPHIDCOM 0x02 |
41 | #define CT_CA42V2 0x03 | ||
37 | #define CT_GENERIC 0x0F | 42 | #define CT_GENERIC 0x0F |
38 | /* End of chiptype definitions */ | 43 | /* End of chiptype definitions */ |
39 | 44 | ||