aboutsummaryrefslogtreecommitdiff
path: root/src/soc/nvidia/tegra210
diff options
context:
space:
mode:
authorMartin Roth <martinroth@google.com>2017-06-24 21:34:58 -0600
committerMartin Roth <martinroth@google.com>2017-07-16 19:22:25 +0000
commit99aa6ce053f5122a98713b8353de6b8a72182cad (patch)
treec181ba483922dadf346c153415884d3f25c4ee22 /src/soc/nvidia/tegra210
parent7a1a3ad2ce3403f0379b72d30360e2bed02e9c26 (diff)
src/soc: add IS_ENABLED() around Kconfig symbol references
Change-Id: I2e7b756296e861e08cea846297f687a880daaf45 Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/20355 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src/soc/nvidia/tegra210')
-rw-r--r--src/soc/nvidia/tegra210/include/soc/mtc.h2
-rw-r--r--src/soc/nvidia/tegra210/romstage.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/nvidia/tegra210/include/soc/mtc.h b/src/soc/nvidia/tegra210/include/soc/mtc.h
index fa07f33247..ca369ad3cf 100644
--- a/src/soc/nvidia/tegra210/include/soc/mtc.h
+++ b/src/soc/nvidia/tegra210/include/soc/mtc.h
@@ -18,7 +18,7 @@
#include <boot/coreboot_tables.h>
-#if CONFIG_HAVE_MTC
+#if IS_ENABLED(CONFIG_HAVE_MTC)
int tegra210_run_mtc(void);
void soc_add_mtc(struct lb_header *header);
diff --git a/src/soc/nvidia/tegra210/romstage.c b/src/soc/nvidia/tegra210/romstage.c
index 9491570a0b..7b6444d7f8 100644
--- a/src/soc/nvidia/tegra210/romstage.c
+++ b/src/soc/nvidia/tegra210/romstage.c
@@ -45,7 +45,7 @@ void romstage(void)
printk(BIOS_INFO, "T210: romstage here\n");
-#if CONFIG_BOOTROM_SDRAM_INIT
+#if IS_ENABLED(CONFIG_BOOTROM_SDRAM_INIT)
printk(BIOS_INFO, "T210 romstage: SDRAM init done by BootROM, RAMCODE = %d\n",
sdram_get_ram_code());
#else