summaryrefslogtreecommitdiffstats
path: root/arch/i386/mach-voyager
diff options
context:
space:
mode:
authorJames Bottomley2006-02-24 22:04:10 +0100
committerLinus Torvalds2006-02-24 23:31:38 +0100
commit8d5c822b2920be9016806f61fd552d2301cfa2fc (patch)
treef93da6d34191a26e3d9d38230da39e1ec2109989 /arch/i386/mach-voyager
parent[PATCH] cfi: init wait queue in chip struct (diff)
downloadkernel-qcow2-linux-8d5c822b2920be9016806f61fd552d2301cfa2fc.tar.gz
kernel-qcow2-linux-8d5c822b2920be9016806f61fd552d2301cfa2fc.tar.xz
kernel-qcow2-linux-8d5c822b2920be9016806f61fd552d2301cfa2fc.zip
[PATCH] voyager: fix boot panic by adding topology export
It looks like I can't get away without exporting topology functions from voyager any longer, so add them to the voyager subarchitecture. Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/i386/mach-voyager')
-rw-r--r--arch/i386/mach-voyager/voyager_basic.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/i386/mach-voyager/voyager_basic.c b/arch/i386/mach-voyager/voyager_basic.c
index aa49a33a572c..6761d294f260 100644
--- a/arch/i386/mach-voyager/voyager_basic.c
+++ b/arch/i386/mach-voyager/voyager_basic.c
@@ -23,6 +23,9 @@
#include <linux/delay.h>
#include <linux/reboot.h>
#include <linux/sysrq.h>
+#include <linux/smp.h>
+#include <linux/nodemask.h>
+#include <asm/cpu.h>
#include <asm/io.h>
#include <asm/voyager.h>
#include <asm/vic.h>
@@ -329,3 +332,15 @@ void machine_power_off(void)
pm_power_off();
}
+static struct i386_cpu cpu_devices[NR_CPUS];
+
+static int __init topology_init(void)
+{
+ int i;
+
+ for_each_present_cpu(i)
+ register_cpu(&cpu_devices[i].cpu, i, NULL);
+ return 0;
+}
+
+subsys_initcall(topology_init);