On Wed, Jan 19, David Brownell wrote:

> On Wednesday 19 January 2005 11:31 am, Olaf Hering wrote:
> >  On Wed, Jan 19, David Brownell wrote:
> > 
> > > Well it's not actually a real COMM class, but you might see if you can
> > > make "usbnet" use that interface.  Bind to vendor + product though.
> > 
> > I will try that. It looks like the network connector, these are the
> > chips inside:
> > 
> > PL-2301   0428E
> > PL-2303   0427H
> > PL-2305H  0431 730E
> > ADM213    EARS 0426 481717.1            RS232 transceiver
> > RTL8201BL 4604751 426D                  Single-Port 10/100M Fast Ethernet 
> > PHYceiver with an MII
> > ASIX AX88172 L F04210143 ED3            USB to Fast 
> > Ethernet/HomePNA/HomePlug Controller
> 
> There you go.  Just add that to the list of IDs recognized by the AX8817x 
> driver,
> and it should work.  Then please submit a patch.  :)

At least one thing fixed today.
Vojtech, you may find the right wording for the entry in the usb.ids file.

Add support for another AX8817x network device,
found in a docking station.


T:  Bus=01 Lev=02 Prnt=03 Port=00 Cnt=01 Dev#=  4 Spd=480 MxCh= 0
D:  Ver= 2.00 Cls=02(comm.) Sub=00 Prot=00 MxPS=64 #Cfgs=  1
P:  Vendor=1631 ProdID=6200 Rev= 0.01
S:  Manufacturer=goodway corp usb
S:  Product=gwusb2e
S:  SerialNumber=01
C:* #Ifs= 1 Cfg#= 1 Atr=80 MxPwr=450mA
I:  If#= 0 Alt= 0 #EPs= 3 Cls=00(>ifc ) Sub=00 Prot=00 Driver=(none)
E:  Ad=81(I) Atr=03(Int.) MxPS=   8 Ivl=128ms
E:  Ad=02(O) Atr=02(Bulk) MxPS= 512 Ivl=0ms
E:  Ad=83(I) Atr=02(Bulk) MxPS= 512 Ivl=0ms


Signed-off-by: Olaf Hering <[EMAIL PROTECTED]>

diff -purN ../linux-2.6.10.orig/drivers/usb/net/usbnet.c 
./drivers/usb/net/usbnet.c
--- ../linux-2.6.10.orig/drivers/usb/net/usbnet.c       2004-12-24 
21:34:58.000000000 +0000
+++ ./drivers/usb/net/usbnet.c  2005-01-19 20:18:17.399020430 +0000
@@ -3265,6 +3265,10 @@ static const struct usb_device_id        produc
        // Surecom EP-1427X-2
        USB_DEVICE (0x1189, 0x0893),
        .driver_info = (unsigned long) &ax8817x_info,
+}, {
+       // goodway corp usb gwusb2e
+       USB_DEVICE (0x1631, 0x6200),
+       .driver_info = (unsigned long) &ax8817x_info,
 },
 #endif
 


-------------------------------------------------------
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
_______________________________________________
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