Index: chromeos/compat-wireless/drivers/net/wireless/p54/p54usb.c |
diff --git a/chromeos/compat-wireless/drivers/net/wireless/p54/p54usb.c b/chromeos/compat-wireless/drivers/net/wireless/p54/p54usb.c |
index a962321a5990e17067e9eedf0440dded0209b99f..f1b48034de9dd2ddced7a2c9ee83c9dd932eeff9 100644 |
--- a/chromeos/compat-wireless/drivers/net/wireless/p54/p54usb.c |
+++ b/chromeos/compat-wireless/drivers/net/wireless/p54/p54usb.c |
@@ -33,8 +33,17 @@ MODULE_ALIAS("prism54usb"); |
MODULE_FIRMWARE("isl3886usb"); |
MODULE_FIRMWARE("isl3887usb"); |
+/* |
+ * Note: |
+ * |
+ * Always update our wiki's device list (located at: |
+ * http://wireless.kernel.org/en/users/Drivers/p54/devices ), |
+ * whenever you add a new device. |
+ */ |
+ |
static struct usb_device_id p54u_table[] __devinitdata = { |
/* Version 1 devices (pci chip + net2280) */ |
+ {USB_DEVICE(0x045e, 0x00c2)}, /* Microsoft MN-710 */ |
{USB_DEVICE(0x0506, 0x0a11)}, /* 3COM 3CRWE254G72 */ |
{USB_DEVICE(0x06b9, 0x0120)}, /* Thomson SpeedTouch 120g */ |
{USB_DEVICE(0x0707, 0xee06)}, /* SMC 2862W-G */ |
@@ -47,7 +56,9 @@ static struct usb_device_id p54u_table[] __devinitdata = { |
{USB_DEVICE(0x0846, 0x4220)}, /* Netgear WG111 */ |
{USB_DEVICE(0x09aa, 0x1000)}, /* Spinnaker Proto board */ |
{USB_DEVICE(0x0cde, 0x0006)}, /* Medion 40900, Roper Europe */ |
+ {USB_DEVICE(0x107b, 0x55f2)}, /* Gateway WGU-210 (Gemtek) */ |
{USB_DEVICE(0x124a, 0x4023)}, /* Shuttle PN15, Airvast WM168g, IOGear GWU513 */ |
+ {USB_DEVICE(0x1630, 0x0005)}, /* 2Wire 802.11g USB (v1) / Z-Com */ |
{USB_DEVICE(0x1915, 0x2234)}, /* Linksys WUSB54G OEM */ |
{USB_DEVICE(0x1915, 0x2235)}, /* Linksys WUSB54G Portable OEM */ |
{USB_DEVICE(0x2001, 0x3701)}, /* DLink DWL-G120 Spinnaker */ |
@@ -60,6 +71,7 @@ static struct usb_device_id p54u_table[] __devinitdata = { |
{USB_DEVICE(0x050d, 0x7050)}, /* Belkin F5D7050 ver 1000 */ |
{USB_DEVICE(0x0572, 0x2000)}, /* Cohiba Proto board */ |
{USB_DEVICE(0x0572, 0x2002)}, /* Cohiba Proto board */ |
+ {USB_DEVICE(0x06a9, 0x000e)}, /* Westell 802.11g USB (A90-211WG-01) */ |
{USB_DEVICE(0x06b9, 0x0121)}, /* Thomson SpeedTouch 121g */ |
{USB_DEVICE(0x0707, 0xee13)}, /* SMC 2862W-G version 2 */ |
{USB_DEVICE(0x083a, 0x4521)}, /* Siemens Gigaset USB Adapter 54 version 2 */ |
@@ -80,6 +92,7 @@ static struct usb_device_id p54u_table[] __devinitdata = { |
{USB_DEVICE(0x13B1, 0x000C)}, /* Linksys WUSB54AG */ |
{USB_DEVICE(0x1413, 0x5400)}, /* Telsey 802.11g USB2.0 Adapter */ |
{USB_DEVICE(0x1435, 0x0427)}, /* Inventel UR054G */ |
+ {USB_DEVICE(0x1668, 0x1050)}, /* Actiontec 802UIG-1 */ |
{USB_DEVICE(0x2001, 0x3704)}, /* DLink DWL-G122 rev A2 */ |
{USB_DEVICE(0x413c, 0x5513)}, /* Dell WLA3310 USB Wireless Adapter */ |
{USB_DEVICE(0x413c, 0x8102)}, /* Spinnaker DUT */ |
@@ -930,8 +943,8 @@ static int __devinit p54u_probe(struct usb_interface *intf, |
#ifdef CONFIG_PM |
/* ISL3887 needs a full reset on resume */ |
udev->reset_resume = 1; |
+#endif /* CONFIG_PM */ |
err = p54u_device_reset(dev); |
-#endif |
priv->hw_type = P54U_3887; |
dev->extra_tx_headroom += sizeof(struct lm87_tx_hdr); |