diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-03-20 04:05:16 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-03-20 04:05:16 +0100 |
commit | f32e3555834c4bc95fccba1aa245d95b3a0a0bc8 (patch) | |
tree | 9500951ff367f40604f19608490466da1f2607c5 /arch | |
parent | Merge branch 'for-linus' of git://git390.osdl.marist.edu/pub/scm/linux-2.6 (diff) | |
parent | [ARM] 4264/1: ldrex/strex syntax errors with recent compilers (diff) | |
download | linux-f32e3555834c4bc95fccba1aa245d95b3a0a0bc8.tar.xz linux-f32e3555834c4bc95fccba1aa245d95b3a0a0bc8.zip |
Merge master.kernel.org:/home/rmk/linux-2.6-arm
* master.kernel.org:/home/rmk/linux-2.6-arm:
[ARM] 4264/1: ldrex/strex syntax errors with recent compilers
[ARM] Fix breakage caused by 72486f1f8f0a2bc828b9d30cf4690cf2dd6807fc
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/kernel/setup.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c index 03e37af315d7..0453dcc757b4 100644 --- a/arch/arm/kernel/setup.c +++ b/arch/arm/kernel/setup.c @@ -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; } |