Date: Wed, 19 Feb 2003 00:10:32 -0700 (MST) From: "M. Warner Losh" <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 Message-ID: <20030219.001032.85745455.imp@bsdimp.com> 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>
next in thread | previous in thread | raw e-mail | index | archive | help
In message: <20030218173414.GA316@tchoubou.scientiae.net>
Viny <viny@gcu-squad.org> writes:
: pci0: <unknown card> (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-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20030219.001032.85745455.imp>
