diff options
author | 1999-06-13 17:17:30 +0000 | |
---|---|---|
committer | 1999-06-13 17:17:30 +0000 | |
commit | 17fd625404e8a23f2e3c53813918b6e6c4306ab9 (patch) | |
tree | 3417105a63c44d00aacb58fcbb08629716de4afb | |
parent | Don't barf on ^D during initial questions (diff) | |
download | wireguard-openbsd-17fd625404e8a23f2e3c53813918b6e6c4306ab9.tar.xz wireguard-openbsd-17fd625404e8a23f2e3c53813918b6e6c4306ab9.zip |
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.c | 5 |
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); } |