]> git.karo-electronics.de Git - linux-beck.git/commitdiff
[ARM] Fix breakage caused by 72486f1f8f0a2bc828b9d30cf4690cf2dd6807fc
authorRussell King <rmk@dyn-67.arm.linux.org.uk>
Tue, 13 Mar 2007 09:54:21 +0000 (09:54 +0000)
committerRussell King <rmk+kernel@arm.linux.org.uk>
Tue, 13 Mar 2007 09:54:21 +0000 (09:54 +0000)
72486f1f8f0a2bc828b9d30cf4690cf2dd6807fc inverted the sense for
enabling hotplug CPU controls without reference to any other
architecture other than i386, ia64 and PowerPC.  This left
everyone else without hotplug CPU control.

Fix ARM for this brain damage.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
arch/arm/kernel/setup.c

index 03e37af315d76cc702ca0af3b5bfae6da904147e..0453dcc757b40da1722d9d900e160d3f2751d86e 100644 (file)
@@ -839,8 +839,11 @@ static int __init topology_init(void)
 {
        int cpu;
 
-       for_each_possible_cpu(cpu)
-               register_cpu(&per_cpu(cpu_data, cpu).cpu, cpu);
+       for_each_possible_cpu(cpu) {
+               struct cpuinfo_arm *cpuinfo = &per_cpu(cpu_data, cpu);
+               cpuinfo->cpu.hotpluggable = 1;
+               register_cpu(&cpuinfo->cpu, cpu);
+       }
 
        return 0;
 }