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 f53d04dce4d27ba94e0948a2ce490e713aa7360e 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) but isn't needed here.
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, 2 deletions(-)
diff --git a/src/cpu/intel/fsp_model_206ax/microcode_blob.c b/src/cpu/intel/fsp_model_206ax/microcode_blob.c index 309ea75..c2538e8 100644 --- a/src/cpu/intel/fsp_model_206ax/microcode_blob.c +++ b/src/cpu/intel/fsp_model_206ax/microcode_blob.c @@ -18,7 +18,5 @@ */
unsigned microcode[] = { -#if IS_ENABLED(SUPPORT_CPU_UCODE_IN_CBFS) #include "microcode_blob.h" -#endif };