diff options
Diffstat (limited to 'src/include/device/dram')
-rw-r--r-- | src/include/device/dram/common.h | 2 | ||||
-rw-r--r-- | src/include/device/dram/ddr3.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/include/device/dram/common.h b/src/include/device/dram/common.h index 31cdb2bb5b..b1677c8a07 100644 --- a/src/include/device/dram/common.h +++ b/src/include/device/dram/common.h @@ -52,7 +52,7 @@ * disabled. * @{ */ -#if IS_ENABLED(CONFIG_DEBUG_RAM_SETUP) +#if CONFIG(DEBUG_RAM_SETUP) #define printram(x, ...) printk(BIOS_DEBUG, x, ##__VA_ARGS__) #else #define printram(x, ...) diff --git a/src/include/device/dram/ddr3.h b/src/include/device/dram/ddr3.h index 5643787c01..0f9373e220 100644 --- a/src/include/device/dram/ddr3.h +++ b/src/include/device/dram/ddr3.h @@ -56,7 +56,7 @@ * disabled. * @{ */ -#if IS_ENABLED(CONFIG_DEBUG_RAM_SETUP) +#if CONFIG(DEBUG_RAM_SETUP) #define printram(x, ...) printk(BIOS_DEBUG, x, ##__VA_ARGS__) #else #define printram(x, ...) |