coreboot-kgpe-d16/src/include/cpu/x86/bist.h
Stefan Reinauer 704b59662d We call this cache as ram everywhere, so let's call it the same in Kconfig
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Peter Stuge <peter@stuge.se>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5756 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
2010-08-30 17:53:13 +00:00

18 lines
317 B
C

#ifndef CPU_X86_BIST_H
#define CPU_X86_BIST_H
static void report_bist_failure(u32 bist)
{
if (bist != 0) {
#if CONFIG_CACHE_AS_RAM
printk(BIOS_EMERG, "BIST failed: %08x", bist);
#else
print_emerg("BIST failed: ");
print_emerg_hex32(bist);
#endif
die("\n");
}
}
#endif /* CPU_Xf86_BIST_H */