diff options
author | 2005-07-28 17:22:28 +0000 | |
---|---|---|
committer | 2005-07-28 17:22:28 +0000 | |
commit | c72b8534b018c42664633a50bee02470b1d77365 (patch) | |
tree | 280704ffd27c86e80df5bb7060b0cb2e4f8de2b1 /sys | |
parent | Use proper type for 32 bit entity. s/long/int (diff) | |
download | wireguard-openbsd-c72b8534b018c42664633a50bee02470b1d77365.tar.xz wireguard-openbsd-c72b8534b018c42664633a50bee02470b1d77365.zip |
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')
-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 |