From b104228c06766950f8a16165f5220816e41fcf3e Mon Sep 17 00:00:00 2001 From: "Dale S. Rahn" Date: Sun, 13 Jun 1999 17:17:31 +0000 Subject: 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). --- sys/arch/powerpc/isa/isabus.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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); } -- cgit v1.2.3