x86: setup_percpu.c fix style problems

Impact: cleanup

Fix:

WARNING: Use #include <linux/smp.h> instead of <asm/smp.h>
WARNING: Use #include <linux/percpu.h> instead of <asm/percpu.h>
WARNING: Use #include <linux/topology.h> instead of <asm/topology.h>
WARNING: EXPORT_SYMBOL(foo); should immediately follow its function/variable
ERROR: spaces required around that '?' (ctx:VxW)
ERROR: spaces required around that ':' (ctx:VxV)

total: 2 errors, 4 warnings

Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>

authored by

Jaswinder Singh Rajput and committed by
Ingo Molnar
8a87dd9a f50cec36

+5 -6
+5 -6
arch/x86/kernel/setup_percpu.c
··· 5 5 #include <linux/percpu.h> 6 6 #include <linux/kexec.h> 7 7 #include <linux/crash_dump.h> 8 - #include <asm/smp.h> 9 - #include <asm/percpu.h> 8 + #include <linux/smp.h> 9 + #include <linux/topology.h> 10 10 #include <asm/sections.h> 11 11 #include <asm/processor.h> 12 12 #include <asm/setup.h> 13 - #include <asm/topology.h> 14 13 #include <asm/mpspec.h> 15 14 #include <asm/apicdef.h> 16 15 #include <asm/highmem.h> ··· 19 20 unsigned disabled_cpus __cpuinitdata; 20 21 /* Processor that is doing the boot up */ 21 22 unsigned int boot_cpu_physical_apicid = -1U; 22 - unsigned int max_physical_apicid; 23 23 EXPORT_SYMBOL(boot_cpu_physical_apicid); 24 + unsigned int max_physical_apicid; 24 25 25 26 /* Bitmask of physically existing CPUs */ 26 27 physid_mask_t phys_cpu_present_map; ··· 288 289 289 290 cpulist_scnprintf(buf, sizeof(buf), mask); 290 291 printk(KERN_DEBUG "%s cpu %d node %d: mask now %s\n", 291 - enable? "numa_add_cpu":"numa_remove_cpu", cpu, node, buf); 292 - } 292 + enable ? "numa_add_cpu" : "numa_remove_cpu", cpu, node, buf); 293 + } 293 294 294 295 void __cpuinit numa_add_cpu(int cpu) 295 296 {