summaryrefslogtreecommitdiff
path: root/sys/arch/macppc
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2005-09-29 20:17:35 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2005-09-29 20:17:35 +0000
commit1d4fa44bf36e5491d2ed1496edfe0eb7ea0f1296 (patch)
tree6149eaaddb11434fe11fc316dca76e847a3dcef4 /sys/arch/macppc
parentb5ddf9bb7a7343ecf58525f053f96d5797822de2 (diff)
Configure ht if found.
"there is some stuff here that needs no ok's!" deraadt@
Diffstat (limited to 'sys/arch/macppc')
-rw-r--r--sys/arch/macppc/macppc/mainbus.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/arch/macppc/macppc/mainbus.c b/sys/arch/macppc/macppc/mainbus.c
index f5b0d9d080f..cb2075b8e6a 100644
--- a/sys/arch/macppc/macppc/mainbus.c
+++ b/sys/arch/macppc/macppc/mainbus.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mainbus.c,v 1.10 2003/10/30 03:17:32 itojun Exp $ */
+/* $OpenBSD: mainbus.c,v 1.11 2005/09/29 20:17:34 kettenis Exp $ */
/*
* Copyright (c) 1994, 1995 Carnegie-Mellon University.
@@ -133,6 +133,12 @@ mbattach(struct device *parent, struct device *self, void *aux)
nca.ca_bus = &sc->sc_bus;
config_found(self, &nca, mbprint);
}
+ if (strcmp(name, "ht") == 0) {
+ nca.ca_name = "ht";
+ nca.ca_node = node;
+ nca.ca_bus = &sc->sc_bus;
+ config_found(self, &nca, mbprint);
+ }
}
} else if (system_type != OFWMACH) {
nca.ca_name = "mpcpcibr";