Date: Sat, 27 Apr 2002 01:07:37 -0600 (MDT) From: "M. Warner Losh" <imp@village.org> To: brooks@one-eyed-alien.net Cc: tentacles@mail.themuseav.com, freebsd-current@FreeBSD.ORG Subject: Re: d-link dwl520 wireless pci Message-ID: <20020427.010737.110481017.imp@village.org> In-Reply-To: <20020426171741.A5833@Odin.AC.HMC.Edu> References: <Pine.LNX.4.21.0204261905310.21333-100000@mail.themuseav.com> <20020426171741.A5833@Odin.AC.HMC.Edu>
next in thread | previous in thread | raw e-mail | index | archive | help
In message: <20020426171741.A5833@Odin.AC.HMC.Edu>
Brooks Davis <brooks@one-eyed-alien.net> 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 majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020427.010737.110481017.imp>
