Linux Audio

Check our new training course

Loading...
v4.10.11
 1#ifndef _ASM_X86_BUGS_H
 2#define _ASM_X86_BUGS_H
 3
 4#include <asm/processor.h>
 5
 6extern void check_bugs(void);
 7
 8#if defined(CONFIG_CPU_SUP_INTEL)
 9void check_mpx_erratum(struct cpuinfo_x86 *c);
10#else
11static inline void check_mpx_erratum(struct cpuinfo_x86 *c) {}
12#endif
13
14#if defined(CONFIG_CPU_SUP_INTEL) && defined(CONFIG_X86_32)
15int ppro_with_ram_bug(void);
16#else
17static inline int ppro_with_ram_bug(void) { return 0; }
18#endif
19
20#endif /* _ASM_X86_BUGS_H */
v4.6
 1#ifndef _ASM_X86_BUGS_H
 2#define _ASM_X86_BUGS_H
 3
 
 
 4extern void check_bugs(void);
 
 
 
 
 
 
 5
 6#if defined(CONFIG_CPU_SUP_INTEL) && defined(CONFIG_X86_32)
 7int ppro_with_ram_bug(void);
 8#else
 9static inline int ppro_with_ram_bug(void) { return 0; }
10#endif
11
12#endif /* _ASM_X86_BUGS_H */