From c84c1906b78b767902bf9d8f18ae8a21d2f1f114 Mon Sep 17 00:00:00 2001 From: Eric Biederman Date: Thu, 14 Oct 2004 20:13:01 +0000 Subject: - Renamed cpu header files git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1659 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/include/cpu/x86/bist.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/include/cpu/x86/bist.h (limited to 'src/include/cpu/x86/bist.h') diff --git a/src/include/cpu/x86/bist.h b/src/include/cpu/x86/bist.h new file mode 100644 index 0000000000..6a62150c68 --- /dev/null +++ b/src/include/cpu/x86/bist.h @@ -0,0 +1,13 @@ +#ifndef CPU_X86_BIST_H +#define CPU_X86_BIST_H + +static void report_bist_failure(unsigned long bist) +{ + if (bist != 0) { + print_emerg("BIST failed: "); + print_emerg_hex32(bist); + die("\r\n"); + } +} + +#endif /* CPU_Xf86_BIST_H */ -- cgit v1.2.3