diff options
author | Borislav Petkov <bp@amd64.org> | 2011-02-11 12:17:54 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2011-02-14 06:08:28 -0500 |
commit | 1c9d16e35911090dee3f9313e6af13af623d66ee (patch) | |
tree | 5bff29a77f91976e7b991ed5d2ae4d3f4429aeb1 /arch/x86/kernel/process.c | |
parent | 5117348dea5e3ecbb785cfa1271386fb49332b41 (diff) |
x86: Fix mwait_usable section mismatch
We use it in non __cpuinit code now too so drop marker.
Signed-off-by: Borislav Petkov <borislav.petkov@amd.com>
LKML-Reference: <20110211171754.GA21047@aftab>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/process.c')
-rw-r--r-- | arch/x86/kernel/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/process.c b/arch/x86/kernel/process.c index e764fc05d700..3c189e9accd3 100644 --- a/arch/x86/kernel/process.c +++ b/arch/x86/kernel/process.c | |||
@@ -506,7 +506,7 @@ static void poll_idle(void) | |||
506 | #define MWAIT_ECX_EXTENDED_INFO 0x01 | 506 | #define MWAIT_ECX_EXTENDED_INFO 0x01 |
507 | #define MWAIT_EDX_C1 0xf0 | 507 | #define MWAIT_EDX_C1 0xf0 |
508 | 508 | ||
509 | int __cpuinit mwait_usable(const struct cpuinfo_x86 *c) | 509 | int mwait_usable(const struct cpuinfo_x86 *c) |
510 | { | 510 | { |
511 | u32 eax, ebx, ecx, edx; | 511 | u32 eax, ebx, ecx, edx; |
512 | 512 | ||