summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds2007-03-20 04:05:16 +0100
committerLinus Torvalds2007-03-20 04:05:16 +0100
commitf32e3555834c4bc95fccba1aa245d95b3a0a0bc8 (patch)
tree9500951ff367f40604f19608490466da1f2607c5
parentMerge 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)
downloadkernel-qcow2-linux-f32e3555834c4bc95fccba1aa245d95b3a0a0bc8.tar.gz
kernel-qcow2-linux-f32e3555834c4bc95fccba1aa245d95b3a0a0bc8.tar.xz
kernel-qcow2-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
-rw-r--r--arch/arm/kernel/setup.c7
-rw-r--r--include/asm-arm/atomic.h4
2 files changed, 7 insertions, 4 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;
}
diff --git a/include/asm-arm/atomic.h b/include/asm-arm/atomic.h
index ea88aa6bfc78..f266c2795124 100644
--- a/include/asm-arm/atomic.h
+++ b/include/asm-arm/atomic.h
@@ -103,9 +103,9 @@ static inline void atomic_clear_mask(unsigned long mask, unsigned long *addr)
unsigned long tmp, tmp2;
__asm__ __volatile__("@ atomic_clear_mask\n"
-"1: ldrex %0, %2\n"
+"1: ldrex %0, [%2]\n"
" bic %0, %0, %3\n"
-" strex %1, %0, %2\n"
+" strex %1, %0, [%2]\n"
" teq %1, #0\n"
" bne 1b"
: "=&r" (tmp), "=&r" (tmp2)