diff options
author | Mike Pechkin <mpech@cvs.openbsd.org> | 2002-05-31 08:46:01 +0000 |
---|---|---|
committer | Mike Pechkin <mpech@cvs.openbsd.org> | 2002-05-31 08:46:01 +0000 |
commit | 4d82cbd93cbd494f12f139190c58e67ca3cc3341 (patch) | |
tree | d81c1175ff081e17c88b273b954086175e790aab /sys | |
parent | a3a1f37177fb3c11707765549793b4f5cc3c11bd (diff) |
Support for "Intel PRO/100 VM" w/ id 0x1038.
art@ ok
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/if_fxp_pci.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/pci/if_fxp_pci.c b/sys/dev/pci/if_fxp_pci.c index 50de486bb8b..4a2fc7ed5f4 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.12 2002/03/14 01:26:58 millert Exp $ */ +/* $OpenBSD: if_fxp_pci.c,v 1.13 2002/05/31 08:46:00 mpech Exp $ */ /* * Copyright (c) 1995, David Greenman @@ -109,6 +109,7 @@ fxp_pci_match(parent, match, aux) 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: return (1); } @@ -183,6 +184,7 @@ fxp_pci_attach(parent, self, aux) 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: sc->sc_flags |= FXPF_HAS_RESUME_BUG; sc->not_82557 = 0; break; |