diff options
author | Martin Roth <martinroth@google.com> | 2017-06-24 14:16:38 -0600 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-07-06 00:19:37 +0000 |
commit | 1bf55b4070bef2be8259f3153cade27121127b4a (patch) | |
tree | 01df7a81ffbc396d15d1d91ce0de0e54f59573b4 /src/lib/malloc.c | |
parent | 5764cbbf91cf80c21f7e6b819526ebd074049551 (diff) |
src/lib: add IS_ENABLED() around Kconfig symbol references
Some of these can be changed from #if to if(), but that will happen
in a follow-on commmit.
Change-Id: Idcea3f8b1a4246cb6b29999a84a191a3133e5c78
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/20341
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/lib/malloc.c')
-rw-r--r-- | src/lib/malloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/malloc.c b/src/lib/malloc.c index 9974b2cdfb..b881ed2747 100644 --- a/src/lib/malloc.c +++ b/src/lib/malloc.c @@ -2,7 +2,7 @@ #include <console/console.h> #include <cpu/x86/smm.h> -#if CONFIG_DEBUG_MALLOC +#if IS_ENABLED(CONFIG_DEBUG_MALLOC) #define MALLOCDBG(x...) printk(BIOS_SPEW, x) #else #define MALLOCDBG(x...) |