From owner-freebsd-current Sat Apr 27 0: 8:17 2002 Delivered-To: freebsd-current@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 690C937B430 for ; Sat, 27 Apr 2002 00:08:03 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id g3R782H01137; Sat, 27 Apr 2002 01:08:02 -0600 (MDT) (envelope-from imp@village.org) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.11.6/8.11.6) with ESMTP id g3R780b56768; Sat, 27 Apr 2002 01:08:01 -0600 (MDT) (envelope-from imp@village.org) Date: Sat, 27 Apr 2002 01:07:37 -0600 (MDT) Message-Id: <20020427.010737.110481017.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 From: "M. Warner Losh" In-Reply-To: <20020426171741.A5833@Odin.AC.HMC.Edu> References: <20020426171741.A5833@Odin.AC.HMC.Edu> X-Mailer: Mew version 2.1 on Emacs 21.1 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message: <20020426171741.A5833@Odin.AC.HMC.Edu> Brooks Davis 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