timer: kernel/timer.c section fixes

This patch fixes the following section mismatches with CONFIG_HOTPLUG=n,
CONFIG_HOTPLUG_CPU=y:

...
WARNING: vmlinux.o(.text+0x41cd3): Section mismatch: reference to .init.data:tvec_base_done.22610 (between 'timer_cpu_notify' and 'run_timer_softirq')
WARNING: vmlinux.o(.text+0x41d67): Section mismatch: reference to .init.data:tvec_base_done.22610 (between 'timer_cpu_notify' and 'run_timer_softirq')
...

Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>

authored by Adrian Bunk and committed by Ingo Molnar b4be6258 b019e573

+2 -2
+2 -2
kernel/timer.c
··· 1219 */ 1220 static struct lock_class_key base_lock_keys[NR_CPUS]; 1221 1222 - static int __devinit init_timers_cpu(int cpu) 1223 { 1224 int j; 1225 tvec_base_t *base; 1226 - static char __devinitdata tvec_base_done[NR_CPUS]; 1227 1228 if (!tvec_base_done[cpu]) { 1229 static char boot_done;
··· 1219 */ 1220 static struct lock_class_key base_lock_keys[NR_CPUS]; 1221 1222 + static int __cpuinit init_timers_cpu(int cpu) 1223 { 1224 int j; 1225 tvec_base_t *base; 1226 + static char __cpuinitdata tvec_base_done[NR_CPUS]; 1227 1228 if (!tvec_base_done[cpu]) { 1229 static char boot_done;