summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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";