summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authornonaka <nonaka@NetBSD.org>2003-08-14 07:59:39 +0000
committernonaka <nonaka@NetBSD.org>2003-08-14 07:59:39 +0000
commitfcfc3fe7cbca9e6df1d3f996cf80823e245d8212 (patch)
treef89b9581e3882d82353f28be04989cdb2a356e7c /sys/dev
parentfd3f06dabbf8d3e251c7fcb9a4a91abfaa1417d8 (diff)
Add support for another Intel Pro/100 variant.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/if_fxp_pci.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/dev/pci/if_fxp_pci.c b/sys/dev/pci/if_fxp_pci.c
index 38dcd9b3e22..f1772ae4194 100644
--- a/sys/dev/pci/if_fxp_pci.c
+++ b/sys/dev/pci/if_fxp_pci.c
@@ -1,4 +1,4 @@
-/* $NetBSD: if_fxp_pci.c,v 1.34 2003/06/28 23:04:50 bouyer Exp $ */
+/* $NetBSD: if_fxp_pci.c,v 1.35 2003/08/14 07:59:39 nonaka Exp $ */
/*-
* Copyright (c) 1997, 1998, 1999, 2000, 2001 The NetBSD Foundation, Inc.
@@ -43,7 +43,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_fxp_pci.c,v 1.34 2003/06/28 23:04:50 bouyer Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_fxp_pci.c,v 1.35 2003/08/14 07:59:39 nonaka Exp $");
#include "rnd.h"
@@ -140,6 +140,8 @@ const struct fxp_pci_product {
"Intel PRO/100 VM Network Controller with 82562EM/EX PHY" },
{ PCI_PRODUCT_INTEL_PRO_100_VM_4,
"Intel PRO/100 VM Network Controller with 82562EM/EX (CNR) PHY" },
+ { PCI_PRODUCT_INTEL_PRO_100_VM_5,
+ "Intel PRO/100 VM (MOB) Network Controller" },
{ PCI_PRODUCT_INTEL_PRO_100_VM_6,
"Intel PRO/100 VM Network Controller with 82562ET PHY" },
{ PCI_PRODUCT_INTEL_PRO_100_M,
@@ -381,6 +383,7 @@ fxp_pci_attach(parent, self, aux)
case PCI_PRODUCT_INTEL_PRO_100_VM_2:
case PCI_PRODUCT_INTEL_PRO_100_VM_3:
case PCI_PRODUCT_INTEL_PRO_100_VM_4:
+ case PCI_PRODUCT_INTEL_PRO_100_VM_5:
case PCI_PRODUCT_INTEL_PRO_100_VM_6:
aprint_normal(": %s, rev %d\n", fpp->fpp_name, sc->sc_rev);