aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorRussell King <rmk@dyn-67.arm.linux.org.uk>2006-03-25 21:37:29 +0000
committerRussell King <rmk+kernel@arm.linux.org.uk>2006-03-25 21:37:29 +0000
commit091c539f08a6700e0cca8cd620c3d72dd9f9e2bb (patch)
tree604aee064dce5f5f4f2e8a9036cddca1e89cb224 /arch
parentinclude/linux/clk.h is betraying its ARM origins (diff)
downloadlinux-dev-091c539f08a6700e0cca8cd620c3d72dd9f9e2bb.tar.xz
linux-dev-091c539f08a6700e0cca8cd620c3d72dd9f9e2bb.zip
[ARM] SMP: don't set cpu_*_map in smp_prepare_boot_cpu
The recent addition of boot_cpu_init() implements the initialisation of the online, present and possible cpu maps for the boot CPU, so there is no reason to duplicate this in the architecture smp_prepare_boot_cpu() hook. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/kernel/smp.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/arm/kernel/smp.c b/arch/arm/kernel/smp.c
index 02aa300c4633..1370d726dc10 100644
--- a/arch/arm/kernel/smp.c
+++ b/arch/arm/kernel/smp.c
@@ -337,9 +337,6 @@ void __init smp_prepare_boot_cpu(void)
unsigned int cpu = smp_processor_id();
per_cpu(cpu_data, cpu).idle = current;
-
- cpu_set(cpu, cpu_present_map);
- cpu_set(cpu, cpu_online_map);
}
static void send_ipi_message(cpumask_t callmap, enum ipi_msg_type msg)