From: Chen Gong Date: Fri, 5 Mar 2010 21:42:38 +0000 (-0800) Subject: kernel/cpu.c: delete deprecated definition in cpu_up() X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=87d5e0236d9d688fb575e9e12232764ac617617c;p=GitHub%2FLineageOS%2Fandroid_kernel_samsung_universal7580.git kernel/cpu.c: delete deprecated definition in cpu_up() Additional_cpus is only supported for IA64 now. X86_64 should not be included. Signed-off-by: Chen Gong Cc: Ingo Molnar Cc: Rusty Russell Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/kernel/cpu.c b/kernel/cpu.c index 677f25376a3..f8cced2692b 100644 --- a/kernel/cpu.c +++ b/kernel/cpu.c @@ -338,7 +338,7 @@ int __cpuinit cpu_up(unsigned int cpu) if (!cpu_possible(cpu)) { printk(KERN_ERR "can't online cpu %d because it is not " "configured as may-hotadd at boot time\n", cpu); -#if defined(CONFIG_IA64) || defined(CONFIG_X86_64) +#if defined(CONFIG_IA64) printk(KERN_ERR "please check additional_cpus= boot " "parameter\n"); #endif