From owner-freebsd-mobile Tue Feb 18 23:14:55 2003 Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD86F37B401; Tue, 18 Feb 2003 23:14:54 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC6B943F93; Tue, 18 Feb 2003 23:14:51 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.6/8.12.3) with ESMTP id h1J7Em3Y043803; Wed, 19 Feb 2003 00:14:49 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Wed, 19 Feb 2003 00:10:32 -0700 (MST) Message-Id: <20030219.001032.85745455.imp@bsdimp.com> To: viny@gcu-squad.org Cc: freebsd-questions@FreeBSD.ORG, freebsd-mobile@FreeBSD.ORG Subject: Re: SMC 2602W Wireless PCI Card on stable From: "M. Warner Losh" In-Reply-To: <20030218173414.GA316@tchoubou.scientiae.net> References: <20030217092402.GA2568@tchoubou.scientiae.net> <20030218.090055.122806558.imp@bsdimp.com> <20030218173414.GA316@tchoubou.scientiae.net> X-Mailer: Mew version 2.1 on Emacs 21.2 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In message: <20030218173414.GA316@tchoubou.scientiae.net> Viny writes: : pci0: (vendor=0x10b5, dev=0x9050) at 11.0 irq 15 This is the problem. Ther's no 10b5/9050 ID in if_wi_pci.c. The following patch might do the trick for you. It is relative to -current, but a similar patch would be applicable to stable. Index: if_wi_pci.c =================================================================== RCS file: /home/ncvs/src/sys/dev/wi/if_wi_pci.c,v retrieving revision 1.12 diff -u -r1.12 if_wi_pci.c --- if_wi_pci.c 15 Jan 2003 20:11:31 -0000 1.12 +++ if_wi_pci.c 19 Feb 2003 07:14:20 -0000 @@ -102,6 +102,7 @@ {0x1385, 0x4100, WI_BUS_PCI_PLX, "Netgear MA301"}, {0x1638, 0x1100, WI_BUS_PCI_PLX, "PRISM2STA WaveLAN"}, {0x111a, 0x1023, WI_BUS_PCI_PLX, "Siemens SpeedStream"}, + {0x10b5, 0x9050, WI_BUS_PCI_PLX, "SMC 2602W"}, {0x16ec, 0x3685, WI_BUS_PCI_PLX, "US Robotics 2415"}, {0, 0, 0, NULL} }; Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message