Revision: linuxbios@linuxbios.org--devel/freebios--devel--2.0--patch-51
[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 #if CONFIG_USE_INIT
8                 printk_emerg("BIST failed: %08x", bist);
9 #else
10                 print_emerg("BIST failed: ");
11                 print_emerg_hex32(bist);
12 #endif
13                 die("\r\n");
14
15         }
16 }
17
18 #endif /* CPU_Xf86_BIST_H */