Patrick Georgi (patrick@georgi-clan.de) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/4646
-gerrit
commit 03e6030c9ad1669fb1b1924afa1b2bf156e1fed1 Author: Patrick Georgi patrick@georgi-clan.de Date: Fri Jan 10 20:01:26 2014 +0100
intel/fsp: Fix microcode including
IS_ENABLED() requires the full define (incl. CONFIG_ prefix)
Change-Id: I91d504367c75ce3fcecc6fa2499afaa0896595d3 Signed-off-by: Patrick Georgi patrick@georgi-clan.de --- src/cpu/intel/fsp_model_206ax/microcode_blob.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/cpu/intel/fsp_model_206ax/microcode_blob.c b/src/cpu/intel/fsp_model_206ax/microcode_blob.c index 309ea75..f4893e8 100644 --- a/src/cpu/intel/fsp_model_206ax/microcode_blob.c +++ b/src/cpu/intel/fsp_model_206ax/microcode_blob.c @@ -18,7 +18,7 @@ */
unsigned microcode[] = { -#if IS_ENABLED(SUPPORT_CPU_UCODE_IN_CBFS) +#if IS_ENABLED(CONFIG_SUPPORT_CPU_UCODE_IN_CBFS) #include "microcode_blob.h" #endif };