summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Zeh <werner.zeh@siemens.com>2016-04-28 09:39:34 +0200
committerWerner Zeh <werner.zeh@siemens.com>2016-04-28 19:11:52 +0200
commit7611e7e2f197bf2e13652b07020e1e254a396ed2 (patch)
treec7a0ee7729e80484c5da23d484b91d4633a95fbd
parent608d991cf8032bbacf67961a15905621ec2034f3 (diff)
downloadcoreboot-7611e7e2f197bf2e13652b07020e1e254a396ed2.tar.gz
coreboot-7611e7e2f197bf2e13652b07020e1e254a396ed2.tar.bz2
coreboot-7611e7e2f197bf2e13652b07020e1e254a396ed2.zip
fsp_baytrail: Fix missing "$" when using Kconfig switch
To include gfx.c in ramstage, there is a Kconfig option (FSP_BAYTRAIL_GFX_INIT) which can be activated on demand. Unfortunately, the "$"-character is missing so that this switch is never active. Change-Id: I0c3c562b3caca53ac6510c2c5dc30e7f606f5ad0 Signed-off-by: Werner Zeh <werner.zeh@siemens.com> Reviewed-on: https://review.coreboot.org/14532 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
-rw-r--r--src/soc/intel/fsp_baytrail/Makefile.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/fsp_baytrail/Makefile.inc b/src/soc/intel/fsp_baytrail/Makefile.inc
index 92b5f9804f8e..6e16b426a0d4 100644
--- a/src/soc/intel/fsp_baytrail/Makefile.inc
+++ b/src/soc/intel/fsp_baytrail/Makefile.inc
@@ -57,7 +57,7 @@ ramstage-$(CONFIG_HAVE_SMI_HANDLER) += smm.c
ramstage-y += placeholders.c
ramstage-y += i2c.c
-ramstage-(CONFIG_FSP_BAYTRAIL_GFX_INIT) += gfx.c
+ramstage-$(CONFIG_FSP_BAYTRAIL_GFX_INIT) += gfx.c
CPPFLAGS_common += -I$(src)/soc/intel/fsp_baytrail/include
CPPFLAGS_common += -I$(src)/soc/intel/fsp_baytrail/fsp