blob: 08aca2fd02d883e5e8e6a1f11a7a7b565b84a232 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef CPU_X86_BIST_H
#define CPU_X86_BIST_H
static void report_bist_failure(u32 bist)
{
if (bist != 0) {
printk(BIOS_EMERG, "BIST failed: %08x", bist);
die("\n");
}
}
#endif /* CPU_Xf86_BIST_H */
|