summaryrefslogtreecommitdiff
path: root/src/soc/dmp/vortex86ex/raminit.c
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/dmp/vortex86ex/raminit.c
parent7a1a3ad2ce3403f0379b72d30360e2bed02e9c26 (diff)
downloadcoreboot-99aa6ce053f5122a98713b8353de6b8a72182cad.tar.xz
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/dmp/vortex86ex/raminit.c')
-rw-r--r--src/soc/dmp/vortex86ex/raminit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/dmp/vortex86ex/raminit.c b/src/soc/dmp/vortex86ex/raminit.c
index 1ccdb27e7e..0d4b5b56b3 100644
--- a/src/soc/dmp/vortex86ex/raminit.c
+++ b/src/soc/dmp/vortex86ex/raminit.c
@@ -253,7 +253,7 @@ static u8 detect_ddr3_dram_size(void)
static void print_ddr3_memory_setup(void)
{
-#if CONFIG_DEBUG_RAM_SETUP
+#if IS_ENABLED(CONFIG_DEBUG_RAM_SETUP)
printk(BIOS_DEBUG, "DDR3 Timing Reg 0-3:\n");
printk(BIOS_DEBUG, "NB 6e : ");
print_debug_hex16(pci_read_config16(NB, 0x6e));