bugs.h 454 B

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