summaryrefslogtreecommitdiff
path: root/src/cpu
diff options
context:
space:
mode:
authorStefan Reinauer <reinauer@chromium.org>2012-05-01 16:53:22 -0700
committerPatrick Georgi <patrick@georgi-clan.de>2012-05-02 21:06:31 +0200
commit252111d4333f87523e0feb0df1d4f4078a4d8b9a (patch)
tree837be4d21982096f230f07fb1d55255fb1e52380 /src/cpu
parentcafedcf5c8161f0d427293ecacbf3a9e918e41f3 (diff)
downloadcoreboot-252111d4333f87523e0feb0df1d4f4078a4d8b9a.tar.xz
Don't include console.h in microcode.c when compiling with ROMCC
If microcode.c is built by romcc, this indicates that we are running microcode updates in the bootblock (e.g. before enabling cache as ram). In this case we did not enable any consoles yet, so we don't output anything. This patch removes inclusion of the unnecessary console/console.h for that case, which was breaking with certain configurations. Change-Id: Iebb57794d7b1e84cac253d249d47b88de4dd28a3 Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/988 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/cpu')
-rw-r--r--src/cpu/intel/microcode/microcode.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cpu/intel/microcode/microcode.c b/src/cpu/intel/microcode/microcode.c
index 1511798f66..ae1c26a4b5 100644
--- a/src/cpu/intel/microcode/microcode.c
+++ b/src/cpu/intel/microcode/microcode.c
@@ -20,7 +20,9 @@
/* Microcode update for Intel PIII and later CPUs */
#include <stdint.h>
+#if !defined(__ROMCC__)
#include <console/console.h>
+#endif
#include <cpu/cpu.h>
#include <cpu/x86/msr.h>
#include <cpu/intel/microcode.h>