cpu_set() is marked as obsolete cpumask function and we plan to remove it in future.
This patch replace it with modern cpumask function. Signed-off-by: KOSAKI Motohiro <[email protected]> Cc: Colin Cross <[email protected]> Cc: Erik Gilling <[email protected]> Cc: Olof Johansson <[email protected]> Cc: Russell King <[email protected]> Cc: [email protected] Cc: [email protected] --- arch/arm/mach-tegra/platsmp.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-tegra/platsmp.c b/arch/arm/mach-tegra/platsmp.c index b8ae3c9..468523c 100644 --- a/arch/arm/mach-tegra/platsmp.c +++ b/arch/arm/mach-tegra/platsmp.c @@ -122,7 +122,7 @@ void __init smp_init_cpus(void) } for (i = 0; i < ncores; i++) - cpu_set(i, cpu_possible_map); + set_cpu_possible(i, true); set_smp_cross_call(gic_raise_softirq); } -- 1.7.3.1 -- To unsubscribe from this list: send the line "unsubscribe linux-tegra" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
