diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2016-11-23 23:54:29 +0200 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2016-11-24 21:39:41 +0100 |
commit | 619a245def2ac424beeb8a68d246a78849acd0cc (patch) | |
tree | d57c03e2d7211fc698eb1188b422ef5bfa6fb95f /src/include/cpu | |
parent | 507c9c59766b0de24322f7f674f7f1cc4ed50e3a (diff) | |
download | coreboot-619a245def2ac424beeb8a68d246a78849acd0cc.tar.xz |
x86 BIST: Fix missing include
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>
Diffstat (limited to 'src/include/cpu')
-rw-r--r-- | src/include/cpu/x86/bist.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/cpu/x86/bist.h b/src/include/cpu/x86/bist.h index ed40ded686..9535e69781 100644 --- a/src/include/cpu/x86/bist.h +++ b/src/include/cpu/x86/bist.h @@ -1,6 +1,8 @@ #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) { |