summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2001-10-24 17:33:45 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2001-10-24 17:33:45 +0000
commita2b95f0a31d0f659d53403634a5d2d707b4d2af7 (patch)
tree44edd5880d54353fb92b78a1a0c6acf0f245db47
parent28a931a4a67aab5ca68a3a1273c25224dffa7312 (diff)
Match Netgear MA301 dumb PCMCIA->PCI bridge.
-rw-r--r--share/man/man4/wi.43
-rw-r--r--sys/dev/pci/if_wi_pci.c8
2 files changed, 7 insertions, 4 deletions
diff --git a/share/man/man4/wi.4 b/share/man/man4/wi.4
index 0a4271b0d90..34d63db294c 100644
--- a/share/man/man4/wi.4
+++ b/share/man/man4/wi.4
@@ -1,4 +1,4 @@
-.\" $OpenBSD: wi.4,v 1.16 2001/10/05 14:45:53 mpech Exp $
+.\" $OpenBSD: wi.4,v 1.17 2001/10/24 17:33:44 millert Exp $
.\"
.\" Copyright (c) 1997, 1998, 1999
.\" Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved.
@@ -88,6 +88,7 @@ not require any PCMCIA support.
The following such bridges are supported or expected to work:
.Pp
.Bl -tag -width -offset indent -compact
+.It Netgear MA301
.It 3Com AirConnect 3CRWE777A
.It Global Sun Technology GL24110P02
.It LinkSys WDT11 (a rebadged GL24110P02)
diff --git a/sys/dev/pci/if_wi_pci.c b/sys/dev/pci/if_wi_pci.c
index 468912f78a8..ed42b43594a 100644
--- a/sys/dev/pci/if_wi_pci.c
+++ b/sys/dev/pci/if_wi_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_wi_pci.c,v 1.7 2001/08/25 10:13:29 art Exp $ */
+/* $OpenBSD: if_wi_pci.c,v 1.8 2001/10/24 17:33:44 millert Exp $ */
/*
* Copyright (c) 2001 Todd C. Miller <Todd.Miller@courtesan.com>
@@ -62,8 +62,9 @@
* This is a PCI shim for the Wavelan wireless network driver.
* It works with PCI adaptors based on the PLX 9050 and PLX 9052
* PCI to "dumb bus" bridge chip. It has been tested with the
- * Global Sun Technology GL24110P02 (aka Linksys WDT11) and is
- * expected to work with the Global Sun GL24110P and Eumitcom WL11000P.
+ * Global Sun Technology GL24110P02 (aka Linksys WDT11), 3Com 3CRWE777A,
+ * and Netgear MA301. It is also expected to work with the
+ * Global Sun GL24110P and Eumitcom WL11000P.
*
* All we do here is handle the PCI match and attach, set up an
* interrupt handler entry point, and setup the PLX chip for level
@@ -129,6 +130,7 @@ static const struct wi_pci_product {
{ PCI_VENDOR_GLOBALSUN, PCI_PRODUCT_GLOBALSUN_GL24110P02 },
{ PCI_VENDOR_EUMITCOM, PCI_PRODUCT_EUMITCOM_WL11000P },
{ PCI_VENDOR_3COM, PCI_PRODUCT_3COM_3CRWE777A },
+ { PCI_VENDOR_NETGEAR, PCI_PRODUCT_NETGEAR_MA301 },
{ 0, 0 }
};