Linux Audio

Check our new training course

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