diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2005-09-29 23:58:07 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2005-09-29 23:58:07 +0000 |
commit | bf2fd9a24342ff01b79021f410f93c2a01fc4a2e (patch) | |
tree | 4d3b9e0a855455829ac99237b8643b2f57e5b29e /sys | |
parent | c5633d0cb6628bb84e5ed43b5a08580967958c89 (diff) |
G5 bridge.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/macppc/pci/macobio.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/macppc/pci/macobio.c b/sys/arch/macppc/pci/macobio.c index e477c557dc5..1cfde6ec6d3 100644 --- a/sys/arch/macppc/pci/macobio.c +++ b/sys/arch/macppc/pci/macobio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: macobio.c,v 1.11 2005/09/26 19:54:50 kettenis Exp $ */ +/* $OpenBSD: macobio.c,v 1.12 2005/09/29 23:58:06 drahn Exp $ */ /* $NetBSD: obio.c,v 1.6 1999/05/01 10:36:08 tsubai Exp $ */ /*- @@ -87,6 +87,7 @@ macobio_match(struct device *parent, void *cf, void *aux) case PCI_PRODUCT_APPLE_INTREPID: case PCI_PRODUCT_APPLE_PANGEA_MACIO: case PCI_PRODUCT_APPLE_SHASTA: + case PCI_PRODUCT_APPLE_K2: return 1; } @@ -143,6 +144,7 @@ macobio_attach(struct device *parent, struct device *self, void *aux) case PCI_PRODUCT_APPLE_INTREPID: case PCI_PRODUCT_APPLE_PANGEA_MACIO: case PCI_PRODUCT_APPLE_SHASTA: + case PCI_PRODUCT_APPLE_K2: node = OF_finddevice("mac-io"); if (node == -1) node = OF_finddevice("/pci/mac-io"); |