aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/kernel/smp.c
diff options
context:
space:
mode:
authorPaul Mundt <lethal@linux-sh.org>2010-04-26 18:39:50 +0900
committerPaul Mundt <lethal@linux-sh.org>2010-04-26 18:39:50 +0900
commitf0ccf2770f523bd4fc436886a38e499f9ec95c0e (patch)
tree61a1ca3ba00b4908e43b7aa4ced9b827e96a067d /arch/sh/kernel/smp.c
parentsh: arch/sh/kernel/setup.c needs asm/smp.h. (diff)
downloadlinux-dev-f0ccf2770f523bd4fc436886a38e499f9ec95c0e.tar.xz
linux-dev-f0ccf2770f523bd4fc436886a38e499f9ec95c0e.zip
sh: convert online CPU map twiddling to cpumask.
This converts from cpu_set() for the online map to set_cpu_online(). The two online map modifiers were the last remaining manual map manipulation bits, with this in place everything now goes through cpumask. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel/smp.c')
-rw-r--r--arch/sh/kernel/smp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/kernel/smp.c b/arch/sh/kernel/smp.c
index 2f348fda0159..cc87830ace7f 100644
--- a/arch/sh/kernel/smp.c
+++ b/arch/sh/kernel/smp.c
@@ -102,7 +102,7 @@ asmlinkage void __cpuinit start_secondary(void)
smp_store_cpu_info(cpu);
- cpu_set(cpu, cpu_online_map);
+ set_cpu_online(cpu, true);
cpu_idle();
}