Hi everyone,

The ASIX AX8817X usbnet driver in the 2.6 kernel failed to recognize a
recent version of the Linksys USB200M USB 2.0 ethernet adapter.  It
appears (see
http://www.sustworks.com/pmwiki/pmwiki.php/Sustworks/USB-To-EthernetAdaptors
, search for "New Linksys USB200M") that Linksys is using the newer
AX88772 chipset instead of the older AX88172 in its latest USB200M
models.  (This difference is not reflected in the model number. FWIW,
I own a model with serial number LCS105606689 which apparently uses
the newer chip.)

The new USB200M model also shows up under a different USB device ID.
The patch below adds an appropriate entry to the products table in
drivers/usb/net/asix.c.  I tested the patched driver: it successfully
recognized the adapter I bought recently.  I'm not aware of any
device-specific quirks, so I used the vanilla ax88772 driver info.

Signed-off-by: Martin Jansche <[EMAIL PROTECTED]>

---
--- linux-2.6.14.2/drivers/usb/net/asix.c       2005-11-11
00:33:12.000000000 -0500
+++ linux-source-2.6.14/drivers/usb/net/asix.c  2005-11-12
04:18:18.000000000 -0500
@@ -915,6 +915,10 @@
        // ASIX AX88772 10/100
         USB_DEVICE (0x0b95, 0x7720),
         .driver_info = (unsigned long) &ax88772_info,
+}, {
+       // Linksys USB200M, recent models (after August 2005)
+        USB_DEVICE (0x13b1, 0x0018),
+        .driver_info = (unsigned long) &ax88772_info,
 },
        { },            // END
 };
--
Cheers,
martin


-------------------------------------------------------
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
_______________________________________________
linux-usb-devel@lists.sourceforge.net
To unsubscribe, use the last form field at:
https://lists.sourceforge.net/lists/listinfo/linux-usb-devel

Reply via email to