mce.h 638 B

1234567891011121314151617181920212223242526
  1. #include <linux/init.h>
  2. #include <asm/mce.h>
  3. void amd_mcheck_init(struct cpuinfo_x86 *c);
  4. void intel_p4_mcheck_init(struct cpuinfo_x86 *c);
  5. void intel_p5_mcheck_init(struct cpuinfo_x86 *c);
  6. void intel_p6_mcheck_init(struct cpuinfo_x86 *c);
  7. void winchip_mcheck_init(struct cpuinfo_x86 *c);
  8. /* Call the installed machine check handler for this CPU setup. */
  9. extern void (*machine_check_vector)(struct pt_regs *, long error_code);
  10. #ifdef CONFIG_X86_32
  11. extern int nr_mce_banks;
  12. void intel_set_thermal_handler(void);
  13. #else
  14. static inline void intel_set_thermal_handler(void) { }
  15. #endif
  16. void intel_init_thermal(struct cpuinfo_x86 *c);