diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2014-01-10 20:01:26 +0100 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2014-01-11 09:46:47 +0100 |
commit | 5d1ada0f6431962bef812844c79e01ba5048e6fa (patch) | |
tree | 8206e009b03a9371b7f47595e1ac082a5c857806 | |
parent | 54124d3e5689f7ca8d27090c5ef0512876f8ec2d (diff) | |
download | coreboot-5d1ada0f6431962bef812844c79e01ba5048e6fa.tar.xz |
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>
Reviewed-on: http://review.coreboot.org/4646
Tested-by: build bot (Jenkins)
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
-rw-r--r-- | src/cpu/intel/fsp_model_206ax/microcode_blob.c | 2 |
1 files changed, 0 insertions, 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 309ea75fa1..c2538e8ede 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 }; |