diff options
author | Borislav Petkov <borislav.petkov@amd.com> | 2009-10-16 06:31:32 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-10-16 08:46:49 -0400 |
commit | 5e09954a9acc3b435ffe318b95afd3c02fae069f (patch) | |
tree | a635ff9e4f550e23cc7cf8f128c5a117bab5a4d3 /arch/x86/include/asm/mce.h | |
parent | 6b50f5c7c7163d50af0946a93b61c05e448f6038 (diff) |
x86, mce: Fix up MCE naming nomenclature
Prefix global/setup routines with "mcheck_" thus differentiating
from the internal facilities prefixed with "mce_". Also, prefix
the per cpu calls with mcheck_cpu and rename them to reflect the
MCE setup hierarchy of calls better.
There should be no functionality change resulting from this
patch.
Signed-off-by: Borislav Petkov <borislav.petkov@amd.com>
Cc: Andi Kleen <andi@firstfloor.org>
LKML-Reference: <1255689093-26921-1-git-send-email-borislav.petkov@amd.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/include/asm/mce.h')
-rw-r--r-- | arch/x86/include/asm/mce.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/include/asm/mce.h b/arch/x86/include/asm/mce.h index 227a72df6441..161485da6838 100644 --- a/arch/x86/include/asm/mce.h +++ b/arch/x86/include/asm/mce.h | |||
@@ -120,9 +120,9 @@ extern int mce_disabled; | |||
120 | extern int mce_p5_enabled; | 120 | extern int mce_p5_enabled; |
121 | 121 | ||
122 | #ifdef CONFIG_X86_MCE | 122 | #ifdef CONFIG_X86_MCE |
123 | void mcheck_init(struct cpuinfo_x86 *c); | 123 | void mcheck_cpu_init(struct cpuinfo_x86 *c); |
124 | #else | 124 | #else |
125 | static inline void mcheck_init(struct cpuinfo_x86 *c) {} | 125 | static inline void mcheck_cpu_init(struct cpuinfo_x86 *c) {} |
126 | #endif | 126 | #endif |
127 | 127 | ||
128 | #ifdef CONFIG_X86_ANCIENT_MCE | 128 | #ifdef CONFIG_X86_ANCIENT_MCE |