trivial patch, the Sharp Zaurus SL-C760 is also pxa based.
sincerly yours
Malte Doersam
--- linux-2.4.21.org/drivers/usb/usbnet.c 2003-07-27 23:28:58.000000000 +0200
+++ linux-2.4.21/drivers/usb/usbnet.c 2003-07-27 23:55:26.000000000 +0200
@@ -1426,8 +1426,18 @@
.in = 1, .out = 2,
.epsize = 64,
};
+static const struct driver_info zaurus_slc760_info = {
+ .description = "Sharp Zaurus SL-C760",
+ .flags = FLAG_FRAMING_Z,
+ .check_connect = always_connected,
+ .tx_fixup = zaurus_tx_fixup,
-// SL-5600 and C-700 are PXA based; should resemble A300
+ .in = 1, .out = 2,
+ .epsize = 64,
+};
+
+
+// SL-5600 and C-700 and C-760 are PXA based; should resemble A300
#endif
@@ -2402,6 +2412,15 @@
.bInterfaceSubClass = 0x0a,
.bInterfaceProtocol = 0x00,
.driver_info = (unsigned long) &zaurus_slb500_info,
+},{
+ .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
+ | USB_DEVICE_ID_MATCH_DEVICE,
+ .idVendor = 0x04DD,
+ .idProduct = 0x9031,
+ .bInterfaceClass = 0x02,
+ .bInterfaceSubClass = 0x0a,
+ .bInterfaceProtocol = 0x00,
+ .driver_info = (unsigned long) &zaurus_slc760_info,
},
#endif