diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2008-01-30 07:33:37 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:33:37 -0500 |
commit | 4c02ad1efdd1293d6fdd453a2f27ad993458dcd1 (patch) | |
tree | ee5a88dfc836f49bb6734b65f3ba082376116dea /arch/x86/kernel/process_32.c | |
parent | b48ed48a7816aafedb260cafe872a55757b9489e (diff) |
x86: fix section mismatch warning in process_*.c
Fix the following warning:
WARNING: arch/x86/kernel/built-in.o(.text+0x3): Section mismatch: reference to .cpuinit.data:force_mwait in 'mwait_usable'
[Seen on 64 bit only but similar pattern exist on 32 bit so fix it there too]
mwait_usable() were only used by a function annotated __cpuinit
so annotate mwait_usable() with __cpuinit to fix the warning.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/process_32.c')
-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 b72d7d132072..968371ab223a 100644 --- a/arch/x86/kernel/process_32.c +++ b/arch/x86/kernel/process_32.c | |||
@@ -285,7 +285,7 @@ static void mwait_idle(void) | |||
285 | mwait_idle_with_hints(0, 0); | 285 | mwait_idle_with_hints(0, 0); |
286 | } | 286 | } |
287 | 287 | ||
288 | static int mwait_usable(const struct cpuinfo_x86 *c) | 288 | static int __cpuinit mwait_usable(const struct cpuinfo_x86 *c) |
289 | { | 289 | { |
290 | if (force_mwait) | 290 | if (force_mwait) |
291 | return 1; | 291 | return 1; |