bugs.h 268 B

12345678910111213
  1. #ifndef _ASM_X86_BUGS_H
  2. #define _ASM_X86_BUGS_H
  3. extern void check_bugs(void);
  4. #if defined(CONFIG_CPU_SUP_INTEL) && defined(CONFIG_X86_32)
  5. int ppro_with_ram_bug(void);
  6. #else
  7. static inline int ppro_with_ram_bug(void) { return 0; }
  8. #endif
  9. #endif /* _ASM_X86_BUGS_H */