x86 BIST: Declare function with inline in header file
Change-Id: Ieb5f1668a715ceadd5fe5ba0d121c865f1886038 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/17572 Tested-by: build bot (Jenkins) Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
parent
ba1730b181
commit
c36fa6433e
|
@ -1,7 +1,7 @@
|
|||
#ifndef CPU_X86_BIST_H
|
||||
#define CPU_X86_BIST_H
|
||||
|
||||
static void report_bist_failure(u32 bist)
|
||||
static inline void report_bist_failure(u32 bist)
|
||||
{
|
||||
if (bist != 0) {
|
||||
printk(BIOS_EMERG, "BIST failed: %08x", bist);
|
||||
|
|
Loading…
Reference in New Issue