diff options
author | 2006-04-10 08:34:22 +0000 | |
---|---|---|
committer | 2006-04-10 08:34:22 +0000 | |
commit | 1f1d57db9112967a1c9003dba073a67dac7ac4c1 (patch) | |
tree | 9e9a867cb7bbd7ab4b9de3937736ce04d92cc80e | |
parent | recognize the Intrepid 2 ATA controller. (diff) | |
download | wireguard-openbsd-1f1d57db9112967a1c9003dba073a67dac7ac4c1.tar.xz wireguard-openbsd-1f1d57db9112967a1c9003dba073a67dac7ac4c1.zip |
Intrepid 2 host bridges.
-rw-r--r-- | sys/arch/macppc/pci/pchb.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/macppc/pci/pchb.c b/sys/arch/macppc/pci/pchb.c index f851e86aa38..41171b03e7c 100644 --- a/sys/arch/macppc/pci/pchb.c +++ b/sys/arch/macppc/pci/pchb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pchb.c,v 1.8 2005/10/02 22:09:40 brad Exp $ */ +/* $OpenBSD: pchb.c,v 1.9 2006/04/10 08:34:22 brad Exp $ */ /* $NetBSD: pchb.c,v 1.4 2000/01/25 07:19:11 tsubai Exp $ */ /*- @@ -86,6 +86,9 @@ pchbmatch(struct device *parent, void *cf, void *aux) case PCI_PRODUCT_APPLE_SHASTA_HT: case PCI_PRODUCT_APPLE_K2: case PCI_PRODUCT_APPLE_K2_AGP: + case PCI_PRODUCT_APPLE_INTREPID2_AGP: + case PCI_PRODUCT_APPLE_INTREPID2_PCI1: + case PCI_PRODUCT_APPLE_INTREPID2_PCI1: return (1); } break; |