In message: <[EMAIL PROTECTED]>
            Brooks Davis <[EMAIL PROTECTED]> writes:
: If it's going to work the definition for the Linksys WMP11 will do it.
: It will have the wrong name in dmesg, but that doesn't do anything.
: This entry should be changed to reflect the fact that it's actually an
: Intersil Prism 2.5 ID that lazy vendors are using.

Comments on the following patch?  It removes the extra IEEE 802.11
stuff (which is noise since wi is an 802.11b driver :-) and changes
Linksys WMP11 to the more generic Intersil Prism2.5 PCI.

Warner

Index: if_wi_pci.c
===================================================================
RCS file: /home/imp/FreeBSD/CVS/src/sys/dev/wi/if_wi_pci.c,v
retrieving revision 1.5
diff -u -r1.5 if_wi_pci.c
--- if_wi_pci.c 14 Apr 2002 22:08:58 -0000      1.5
+++ if_wi_pci.c 27 Apr 2002 07:06:57 -0000
@@ -94,13 +94,13 @@
        int bus_type;
        char *desc;
 } pci_ids[] = {
-       {0x1638, 0x1100, WI_BUS_PCI_PLX, "PRISM2STA PCI WaveLAN/IEEE 802.11"},
-       {0x1385, 0x4100, WI_BUS_PCI_PLX, "Netgear MA301 PCI IEEE 802.11b"},
-       {0x16ab, 0x1101, WI_BUS_PCI_PLX, "GLPRISM2 PCI WaveLAN/IEEE 802.11"},
-       {0x16ab, 0x1102, WI_BUS_PCI_PLX, "Linksys WDT11 PCI IEEE 802.11b"},
-       {0x1260, 0x3873, WI_BUS_PCI_NATIVE, "Linksys WMP11 PCI Prism2.5"},
-       {0x10b7, 0x7770, WI_BUS_PCI_PLX, "3Com Airconnect IEEE 802.11b"},
-       {0x111a, 0x1023, WI_BUS_PCI_PLX, "Siemens SpeedStream IEEE 802.11b"},
+       {0x1638, 0x1100, WI_BUS_PCI_PLX, "PRISM2STA PCI WaveLAN"},
+       {0x1385, 0x4100, WI_BUS_PCI_PLX, "Netgear MA301 PCI"},
+       {0x16ab, 0x1101, WI_BUS_PCI_PLX, "GLPRISM2 PCI WaveLAN"},
+       {0x16ab, 0x1102, WI_BUS_PCI_PLX, "Linksys WDT11 PCI"},
+       {0x1260, 0x3873, WI_BUS_PCI_NATIVE, "Intersil Prism2.5 PCI"},
+       {0x10b7, 0x7770, WI_BUS_PCI_PLX, "3Com Airconnect"},
+       {0x111a, 0x1023, WI_BUS_PCI_PLX, "Siemens SpeedStream"},
        {0, 0, 0, NULL}
 };
 

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message

Reply via email to