diff options
author | Adrian Bunk <bunk@kernel.org> | 2007-12-19 17:20:18 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2007-12-19 17:20:18 -0500 |
commit | 3446fa057c33b5464ba6891866c24cd57daf023c (patch) | |
tree | 6cf6339664ad0608e748003a06159dc63b9920c8 /arch | |
parent | f2206ec92c1bd2145a63b2ef1f6abccd6439fe73 (diff) |
x86_32: select_idle_routine() must be __cpuinit
CONFIG_HOTPLUG_CPU=y:
WARNING: vmlinux.o(.text+0x1199a): Section mismatch: reference to .init.text.5:select_idle_routine (between 'init_intel' and 'init_nexgen')
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kernel/process_32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/process_32.c b/arch/x86/kernel/process_32.c index 7b899584d290..9663c2a74830 100644 --- a/arch/x86/kernel/process_32.c +++ b/arch/x86/kernel/process_32.c | |||
@@ -261,7 +261,7 @@ static void mwait_idle(void) | |||
261 | mwait_idle_with_hints(0, 0); | 261 | mwait_idle_with_hints(0, 0); |
262 | } | 262 | } |
263 | 263 | ||
264 | void __devinit select_idle_routine(const struct cpuinfo_x86 *c) | 264 | void __cpuinit select_idle_routine(const struct cpuinfo_x86 *c) |
265 | { | 265 | { |
266 | if (cpu_has(c, X86_FEATURE_MWAIT)) { | 266 | if (cpu_has(c, X86_FEATURE_MWAIT)) { |
267 | printk("monitor/mwait feature present.\n"); | 267 | printk("monitor/mwait feature present.\n"); |