summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbrad <brad@openbsd.org>2005-07-22 23:51:03 +0000
committerbrad <brad@openbsd.org>2005-07-22 23:51:03 +0000
commitcb56df1a7bd6cbee7b01eb775b38023b59d19d48 (patch)
tree512afa683b2e3e8616819d2c4966672c72631498
parentWe can now get the ``battery absent'' status accurately. (diff)
downloadwireguard-openbsd-cb56df1a7bd6cbee7b01eb775b38023b59d19d48.tar.xz
wireguard-openbsd-cb56df1a7bd6cbee7b01eb775b38023b59d19d48.zip
remove ICH3 workaround.
-rw-r--r--sys/dev/pci/if_fxp_pci.c18
1 files changed, 2 insertions, 16 deletions
diff --git a/sys/dev/pci/if_fxp_pci.c b/sys/dev/pci/if_fxp_pci.c
index 8d32ccef2fe..747b3905bde 100644
--- a/sys/dev/pci/if_fxp_pci.c
+++ b/sys/dev/pci/if_fxp_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_fxp_pci.c,v 1.35 2005/05/27 06:37:21 brad Exp $ */
+/* $OpenBSD: if_fxp_pci.c,v 1.36 2005/07/22 23:51:03 brad Exp $ */
/*
* Copyright (c) 1995, David Greenman
@@ -144,7 +144,7 @@ fxp_pci_attach(parent, self, aux)
return;
}
sc->sc_dmat = pa->pa_dmat;
-
+
sc->sc_revision = PCI_REVISION(pa->pa_class);
/*
@@ -192,20 +192,6 @@ fxp_pci_attach(parent, self, aux)
break;
}
break;
- case PCI_PRODUCT_INTEL_PRO_100_VE_0:
- case PCI_PRODUCT_INTEL_PRO_100_VE_1:
- case PCI_PRODUCT_INTEL_PRO_100_VM_0:
- case PCI_PRODUCT_INTEL_PRO_100_VM_1:
- case PCI_PRODUCT_INTEL_PRO_100_VM_2:
- case PCI_PRODUCT_INTEL_82562EH_HPNA_0:
- case PCI_PRODUCT_INTEL_82562EH_HPNA_1:
- case PCI_PRODUCT_INTEL_82562EH_HPNA_2:
- /*
- * ICH3 chips apparently have problems with the enhanced
- * features, so just treat them as an i82557.
- */
- sc->sc_revision = 1;
- break;
default:
break;
}