summaryrefslogtreecommitdiff
path: root/sys/arch/i386/pci
diff options
context:
space:
mode:
authorNathan Binkert <nate@cvs.openbsd.org>2002-04-28 20:36:24 +0000
committerNathan Binkert <nate@cvs.openbsd.org>2002-04-28 20:36:24 +0000
commit0e15fa8dfe2f145ae8bc19488e913095668ff8f5 (patch)
tree4b9b8b15695d7f9c5d0d834783ad4d7ea9675422 /sys/arch/i386/pci
parentae3286ed75bcfa8d2f669f0a76f294e9587aca37 (diff)
Machines with the Serverworks CNB20HE chipset also have a CIOB20 i/o bridge.
Instead of attaching pci busses to the CNB20HE, attach them to the CIOB20. This fixes problems where many of these machines will not attach a second pci bus. This also like Theo's previous diff prevents the shadow bus from appearing. Ok deraadt.
Diffstat (limited to 'sys/arch/i386/pci')
-rw-r--r--sys/arch/i386/pci/pchb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/pci/pchb.c b/sys/arch/i386/pci/pchb.c
index aaa60e8c30b..01fa17a8052 100644
--- a/sys/arch/i386/pci/pchb.c
+++ b/sys/arch/i386/pci/pchb.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pchb.c,v 1.30 2002/04/24 23:02:20 deraadt Exp $ */
+/* $OpenBSD: pchb.c,v 1.31 2002/04/28 20:36:23 nate Exp $ */
/* $NetBSD: pchb.c,v 1.6 1997/06/06 23:29:16 thorpej Exp $ */
/*
@@ -167,7 +167,7 @@ pchbattach(parent, self, aux)
switch (PCI_VENDOR(pa->pa_id)) {
case PCI_VENDOR_RCC:
switch (PCI_PRODUCT(pa->pa_id)) {
- case PCI_PRODUCT_RCC_CNB20HE:
+ case PCI_PRODUCT_RCC_CIOB20:
case PCI_PRODUCT_RCC_CNB20LE:
case PCI_PRODUCT_RCC_CMIC_HE:
bdnum = pci_conf_read(pa->pa_pc, pa->pa_tag, 0x44);