Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/pci apparently this driver works fine for Intel PRO/...
details: https://anonhg.NetBSD.org/src/rev/6a6398282cde
branches: trunk
changeset: 544216:6a6398282cde
user: jdolecek <jdolecek%NetBSD.org@localhost>
date: Fri Mar 14 22:04:03 2003 +0000
description:
apparently this driver works fine for Intel PRO/100 VM with 82562EM/EX PHY,
so make driver match it
while here, also make the driver match 'Intel PRO/100 VM with
82562EM/EX (CNR) PHY', with anticipation it would work fine too
activate the resume and dynamic standby bug workaround for these; might
not be necessary (not confirmed to be needed), but better safe than sorry
Adresses PR kern/20689
diffstat:
sys/dev/pci/if_fxp_pci.c | 10 ++++++++--
1 files changed, 8 insertions(+), 2 deletions(-)
diffs (38 lines):
diff -r d8e6588c5100 -r 6a6398282cde sys/dev/pci/if_fxp_pci.c
--- a/sys/dev/pci/if_fxp_pci.c Fri Mar 14 21:56:07 2003 +0000
+++ b/sys/dev/pci/if_fxp_pci.c Fri Mar 14 22:04:03 2003 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: if_fxp_pci.c,v 1.32 2003/02/18 00:11:53 grant Exp $ */
+/* $NetBSD: if_fxp_pci.c,v 1.33 2003/03/14 22:04:03 jdolecek 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.32 2003/02/18 00:11:53 grant Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_fxp_pci.c,v 1.33 2003/03/14 22:04:03 jdolecek Exp $");
#include "rnd.h"
@@ -136,6 +136,10 @@
"Intel PRO/100 VM Network Controller" },
{ PCI_PRODUCT_INTEL_PRO_100_VM_2,
"Intel PRO/100 VM Network Controller" },
+ { PCI_PRODUCT_INTEL_PRO_100_VM_3,
+ "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_M,
"Intel PRO/100 M Network Controller" },
{ 0,
@@ -373,6 +377,8 @@
case PCI_PRODUCT_INTEL_82562EH_HPNA_1:
case PCI_PRODUCT_INTEL_82562EH_HPNA_2:
case PCI_PRODUCT_INTEL_PRO_100_VM_2:
+ case PCI_PRODUCT_INTEL_PRO_100_VM_3:
+ case PCI_PRODUCT_INTEL_PRO_100_VM_4:
aprint_normal(": %s, rev %d\n", fpp->fpp_name, sc->sc_rev);
/*
Home |
Main Index |
Thread Index |
Old Index