kernel/arch/x86/include/asm/bugs.h
.. .. @@ -4,18 +4,12 @@ 4 4 5 5 #include <asm/processor.h> 6 6 7 -extern void check_bugs(void);8 -9 -#if defined(CONFIG_CPU_SUP_INTEL)10 -void check_mpx_erratum(struct cpuinfo_x86 *c);11 -#else12 -static inline void check_mpx_erratum(struct cpuinfo_x86 *c) {}13 -#endif14 -15 7 #if defined(CONFIG_CPU_SUP_INTEL) && defined(CONFIG_X86_32) 16 8 int ppro_with_ram_bug(void); 17 9 #else 18 10 static inline int ppro_with_ram_bug(void) { return 0; } 19 11 #endif 20 12 13 +extern void cpu_bugs_smt_update(void);14 +21 15 #endif /* _ASM_X86_BUGS_H */