- Renamed cpu header files
[coreboot.git] / src / include / cpu / x86 / bist.h
1 #ifndef CPU_X86_BIST_H
2 #define CPU_X86_BIST_H
3
4 static void report_bist_failure(unsigned long bist)
5 {
6         if (bist != 0) {
7                 print_emerg("BIST failed: ");
8                 print_emerg_hex32(bist);
9                 die("\r\n");
10         }
11 }
12
13 #endif /* CPU_Xf86_BIST_H */