Hi,

The Alcatel TD10 USB to Serial converter cable (for use with a Alcatel
OT 535 or 735(i) mobile phone) seems to be a repackaged Alcatel 
version of the Prolific 2303 adapter. 

And as such, simply adding its product/vendor id (0x11f7/0x02df) to 
drivers/usb/serial/pl2303.c seems to be enough to make it work.

Attached is a small patch against 2.6.5, which does exactly the above.


Regards,
Sepp Wijnands
diff -u linux-2.6.5.orig/drivers/usb/serial/pl2303.c 
linux-2.6.5/drivers/usb/serial/pl2303.c
--- linux-2.6.5.orig/drivers/usb/serial/pl2303.c        2004-04-04 05:37:06.000000000 
+0200
+++ linux-2.6.5/drivers/usb/serial/pl2303.c     2004-04-29 18:35:28.000000000 +0200
@@ -80,6 +80,7 @@
        { USB_DEVICE(RADIOSHACK_VENDOR_ID, RADIOSHACK_PRODUCT_ID) },
        { USB_DEVICE(DCU10_VENDOR_ID, DCU10_PRODUCT_ID) },
        { USB_DEVICE(SITECOM_VENDOR_ID, SITECOM_PRODUCT_ID) },
+       { USB_DEVICE(ALCATEL_VENDOR_ID, ALCATEL_PRODUCT_ID) },
        { }                                     /* Terminating entry */
 };
 
diff -u linux-2.6.5.orig/drivers/usb/serial/pl2303.h 
linux-2.6.5/drivers/usb/serial/pl2303.h
--- linux-2.6.5.orig/drivers/usb/serial/pl2303.h        2004-04-04 05:37:23.000000000 
+0200
+++ linux-2.6.5/drivers/usb/serial/pl2303.h     2004-04-29 18:35:06.000000000 +0200
@@ -41,3 +41,6 @@
 
 #define SITECOM_VENDOR_ID      0x6189
 #define SITECOM_PRODUCT_ID     0x2068
+
+#define ALCATEL_VENDOR_ID      0x11f7
+#define ALCATEL_PRODUCT_ID     0x02df

Reply via email to