diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2005-07-11 17:38:36 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2005-07-11 17:38:36 +0100 |
commit | d12734d14e5602816f0b16b17a8cef5ea70afb5a (patch) | |
tree | cb6793f2bd1d5bbc53562c690e3e09351439e98a /arch/arm/mach-integrator | |
parent | 7343c9ba8ed9d504cd2daf960da58971c6631601 (diff) | |
download | op-kernel-dev-d12734d14e5602816f0b16b17a8cef5ea70afb5a.zip op-kernel-dev-d12734d14e5602816f0b16b17a8cef5ea70afb5a.tar.gz |
[PATCH] ARM SMP: Rename cpu_present_mask to cpu_possible_map
The kernel's terminology for this is cpu_possible_map not
cpu_present_mask.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-integrator')
-rw-r--r-- | arch/arm/mach-integrator/platsmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-integrator/platsmp.c b/arch/arm/mach-integrator/platsmp.c index ead15df..88f40a5 100644 --- a/arch/arm/mach-integrator/platsmp.c +++ b/arch/arm/mach-integrator/platsmp.c @@ -178,7 +178,7 @@ void __init smp_prepare_cpus(unsigned int max_cpus) * be present. */ for (i = 0; i < max_cpus; i++) { - cpu_set(i, cpu_present_mask); + cpu_set(i, cpu_possible_map); } /* |