summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDale S. Rahn <rahnds@cvs.openbsd.org>1999-06-13 17:17:31 +0000
committerDale S. Rahn <rahnds@cvs.openbsd.org>1999-06-13 17:17:31 +0000
commitb104228c06766950f8a16165f5220816e41fcf3e (patch)
tree7ea377db27ae3ef5999ca9a2ca59c867ea505a1b
parentacd1aa80a42e434ca230af542d8b65241673bcf2 (diff)
Support the Powerstack 4000 pci-isa bridge, it is the windbond part,
pci vendid 0x10ad, device id 0x0565. (these need to be added to the pcidevs properly, (Symphony Labs, ISA Bridge).
-rw-r--r--sys/arch/powerpc/isa/isabus.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/powerpc/isa/isabus.c b/sys/arch/powerpc/isa/isabus.c
index c234c043b8c..005d49ccff2 100644
--- a/sys/arch/powerpc/isa/isabus.c
+++ b/sys/arch/powerpc/isa/isabus.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: isabus.c,v 1.10 1998/10/12 04:05:46 rahnds Exp $ */
+/* $OpenBSD: isabus.c,v 1.11 1999/06/13 17:17:30 rahnds Exp $ */
/*-
* Copyright (c) 1995 Per Fogelstrom
@@ -164,6 +164,9 @@ isabrmatch(parent, cfdata, aux)
if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_INTEL &&
PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_INTEL_SIO)
return (1);
+ if (PCI_VENDOR(pa->pa_id) == 0x10ad &&
+ PCI_PRODUCT(pa->pa_id) == 0x0565)
+ return (1);
}
return (0);
}