Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/pci Add support for the 82801FB (ICH6) 10/100 ethern...



details:   https://anonhg.NetBSD.org/src/rev/c930c1e2d9e9
branches:  trunk
changeset: 580988:c930c1e2d9e9
user:      riz <riz%NetBSD.org@localhost>
date:      Wed May 18 20:33:46 2005 +0000

description:
Add support for the 82801FB (ICH6) 10/100 ethernet appearing
on new Intel motherboards.  From Brian Buhrow in PR#30025.
Approved by jmcneill.

diffstat:

 sys/dev/pci/if_fxp_pci.c |  7 +++++--
 sys/dev/pci/pcidevs      |  3 ++-
 2 files changed, 7 insertions(+), 3 deletions(-)

diffs (52 lines):

diff -r a0a450603e0c -r c930c1e2d9e9 sys/dev/pci/if_fxp_pci.c
--- a/sys/dev/pci/if_fxp_pci.c  Wed May 18 20:10:25 2005 +0000
+++ b/sys/dev/pci/if_fxp_pci.c  Wed May 18 20:33:46 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_fxp_pci.c,v 1.40 2005/02/27 00:27:33 perry Exp $    */
+/*     $NetBSD: if_fxp_pci.c,v 1.41 2005/05/18 20:33:46 riz 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.40 2005/02/27 00:27:33 perry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_fxp_pci.c,v 1.41 2005/05/18 20:33:46 riz Exp $");
 
 #include "rnd.h"
 
@@ -148,6 +148,8 @@
          "Intel PRO/100 M Network Controller" },
        { PCI_PRODUCT_INTEL_82801EB_LAN,
          "Intel 82801EB/ER (ICH5) Network Controller" },
+       { PCI_PRODUCT_INTEL_82801FB_LAN,
+         "Intel 82562EZ (ICH6)" },
        { 0,
          NULL },
 };
@@ -402,6 +404,7 @@
        case PCI_PRODUCT_INTEL_PRO_100_VM_5:
        case PCI_PRODUCT_INTEL_PRO_100_VM_6:
        case PCI_PRODUCT_INTEL_82801EB_LAN:
+       case PCI_PRODUCT_INTEL_82801FB_LAN:
        default:
                aprint_normal(": %s, rev %d\n", fpp->fpp_name, sc->sc_rev);
 
diff -r a0a450603e0c -r c930c1e2d9e9 sys/dev/pci/pcidevs
--- a/sys/dev/pci/pcidevs       Wed May 18 20:10:25 2005 +0000
+++ b/sys/dev/pci/pcidevs       Wed May 18 20:33:46 2005 +0000
@@ -1,4 +1,4 @@
-$NetBSD: pcidevs,v 1.710 2005/05/12 23:10:32 cube Exp $
+$NetBSD: pcidevs,v 1.711 2005/05/18 20:33:46 riz Exp $
 
 /*
  * Copyright (c) 1995, 1996 Christopher G. Demetriou
@@ -1681,6 +1681,7 @@
 product INTEL PRO_100_VM_6     0x1050  PRO/100 VM Network Controller with 82562ET/EZ PHY
 product INTEL 82801EB_LAN      0x1051  82801EB/ER 10/100 Ethernet
 product INTEL PRO_100_M                0x1059  PRO/100 M Network Controller
+product INTEL 82801FB_LAN      0x1064  82801FB 10/100 Ethernet
 product INTEL 82547GI          0x1075  i82547GI Gigabit Ethernet
 product INTEL 82541GI          0x1076  i82541GI Gigabit Ethernet
 product INTEL 82541GI_MOBILE   0x1077  i82541GI Mobile Gigabit Ethernet



Home | Main Index | Thread Index | Old Index