Commit 071b11b2 authored by Vincent Legoll's avatar Vincent Legoll Committed by Greg Kroah-Hartman

[PATCH] USB: New USB serial device ID: Asus A600 PDA cradle

Just managed to get usb-serial connection up and running
with my Asus PDA, great work !

If you want to integrate the patches into the kernel tree,
please do so.
parent 5c7ae41e
...@@ -131,6 +131,7 @@ static struct usb_device_id ipaq_id_table [] = { ...@@ -131,6 +131,7 @@ static struct usb_device_id ipaq_id_table [] = {
{ USB_DEVICE(TOSHIBA_VENDOR_ID, TOSHIBA_E740_ID) }, { USB_DEVICE(TOSHIBA_VENDOR_ID, TOSHIBA_E740_ID) },
{ USB_DEVICE(HTC_VENDOR_ID, HTC_PRODUCT_ID) }, { USB_DEVICE(HTC_VENDOR_ID, HTC_PRODUCT_ID) },
{ USB_DEVICE(NEC_VENDOR_ID, NEC_PRODUCT_ID) }, { USB_DEVICE(NEC_VENDOR_ID, NEC_PRODUCT_ID) },
{ USB_DEVICE(ASUS_VENDOR_ID, ASUS_A600_PRODUCT_ID) },
{ } /* Terminating entry */ { } /* Terminating entry */
}; };
......
...@@ -77,6 +77,9 @@ ...@@ -77,6 +77,9 @@
#define NEC_VENDOR_ID 0x0409 #define NEC_VENDOR_ID 0x0409
#define NEC_PRODUCT_ID 0x00d5 #define NEC_PRODUCT_ID 0x00d5
#define ASUS_VENDOR_ID 0x0b05
#define ASUS_A600_PRODUCT_ID 0x4201
/* /*
* Since we can't queue our bulk write urbs (don't know why - it just * Since we can't queue our bulk write urbs (don't know why - it just
* doesn't work), we can send down only one write urb at a time. The simplistic * doesn't work), we can send down only one write urb at a time. The simplistic
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment