619a245def
Change-Id: I3d1a456f17073c99c9502da26e09cfde65380746 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/17586 Tested-by: build bot (Jenkins) Reviewed-by: Nico Huber <nico.h@gmx.de>
14 lines
242 B
C
14 lines
242 B
C
#ifndef CPU_X86_BIST_H
|
|
#define CPU_X86_BIST_H
|
|
|
|
#include <console/console.h>
|
|
|
|
static inline void report_bist_failure(u32 bist)
|
|
{
|
|
if (bist != 0) {
|
|
printk(BIOS_EMERG, "BIST failed: %08x", bist);
|
|
die("\n");
|
|
}
|
|
}
|
|
|
|
#endif /* CPU_X86_BIST_H */
|