
jaswinder at kernel
Nov 29, 2009, 3:54 AM
Post #1 of 1
(75 views)
Permalink
|
|
[PATCH -tip] mce: headers_check fix: arch/x86/include/asm/mce.h
|
|
fix the following 'make headers_check' warning: usr/include/asm/mce.h:111: userspace cannot call function or variable defined in the kernel Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput [at] gmail> Cc: Borislav Petkov <borislav.petkov [at] amd> Cc: Ingo Molnar <mingo [at] elte> --- 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 858baa0..1d80f9d 100644 --- a/arch/x86/include/asm/mce.h +++ b/arch/x86/include/asm/mce.h @@ -108,8 +108,6 @@ struct mce_log { #define K8_MCE_THRESHOLD_BANK_5 (MCE_THRESHOLD_BASE + 5 * 9) #define K8_MCE_THRESHOLD_DRAM_ECC (MCE_THRESHOLD_BANK_4 + 0) -extern struct atomic_notifier_head x86_mce_decoder_chain; - #ifdef __KERNEL__ #include <linux/percpu.h> @@ -119,6 +117,8 @@ extern struct atomic_notifier_head x86_mce_decoder_chain; extern int mce_disabled; extern int mce_p5_enabled; +extern struct atomic_notifier_head x86_mce_decoder_chain; + #ifdef CONFIG_X86_MCE int mcheck_init(void); void mcheck_cpu_init(struct cpuinfo_x86 *c); -- 1.6.5.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo [at] vger More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|