diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2003-05-18 21:08:02 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2003-05-18 21:08:02 +0000 |
commit | 02bef16d7710238b22a5107c610266ef8b5e5c9b (patch) | |
tree | ae312f78d4abad093aab504e8d4ce9a2604ae060 /sys/arch | |
parent | f6594931b72c966691c99506f5d5869a16cc2812 (diff) |
match on Intel 82440MX PCI-ISA which misidentifies itself.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/i386/pci/pcib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/i386/pci/pcib.c b/sys/arch/i386/pci/pcib.c index 056f67fda5c..3fd4c4e64d1 100644 --- a/sys/arch/i386/pci/pcib.c +++ b/sys/arch/i386/pci/pcib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pcib.c,v 1.9 2002/03/14 01:26:33 millert Exp $ */ +/* $OpenBSD: pcib.c,v 1.10 2003/05/18 21:08:01 henning Exp $ */ /* $NetBSD: pcib.c,v 1.6 1997/06/06 23:29:16 thorpej Exp $ */ /*- @@ -86,6 +86,7 @@ pcibmatch(parent, match, aux) case PCI_PRODUCT_INTEL_SIO: case PCI_PRODUCT_INTEL_82371MX: case PCI_PRODUCT_INTEL_82371AB_ISA: + case PCI_PRODUCT_INTEL_82440MX_ISA: /* The above bridges mis-identify themselves */ return (1); } |