diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2005-07-28 17:22:29 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2005-07-28 17:22:29 +0000 |
commit | 03d38a7ff4938923657d463f9d7d12bffd221e16 (patch) | |
tree | 7b71517fe0b00f3b4a9787422aec6907d7f3b06d /sys/arch/i386/pci | |
parent | 957440bf5b5bdce2aee7cc7352cd957e0ed33c1e (diff) |
rev 1.46
Add quirk for Connectix Virtual PC 5 (for Windows at least) emulated
PCI bridge (440BX).
From minoura NetBSD
Diffstat (limited to 'sys/arch/i386/pci')
-rw-r--r-- | sys/arch/i386/pci/pci_machdep.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/i386/pci/pci_machdep.c b/sys/arch/i386/pci/pci_machdep.c index 91257e8fd6b..8e8764428f8 100644 --- a/sys/arch/i386/pci/pci_machdep.c +++ b/sys/arch/i386/pci/pci_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_machdep.c,v 1.28 2005/07/28 16:51:07 brad Exp $ */ +/* $OpenBSD: pci_machdep.c,v 1.29 2005/07/28 17:22:28 brad Exp $ */ /* $NetBSD: pci_machdep.c,v 1.28 1997/06/06 23:29:17 thorpej Exp $ */ /*- @@ -140,6 +140,8 @@ struct { _qe(0, 0, 0, PCI_VENDOR_COMPAQ, PCI_PRODUCT_COMPAQ_TRIFLEX4), /* Triton needed for Connectix Virtual PC */ _qe(0, 0, 0, PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82437FX), + /* Connectix Virtual PC 5 has a 440BX */ + _qe(0, 0, 0, PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82443BX_NOAGP), {0, 0xffffffff} /* patchable */ }; #undef _m1tag |