summaryrefslogtreecommitdiffstats
path: root/src/include/symbols.h
diff options
context:
space:
mode:
authorNico Huber <nico.h@gmx.de>2019-04-06 15:56:08 +0200
committerNico Huber <nico.h@gmx.de>2019-04-08 18:50:10 +0000
commit1dde7ccfa8f405da2fe27d04e91dd6b29a9071bb (patch)
treec82ee29e1f5741006a22f8a27dadd5d1b6d30cd6 /src/include/symbols.h
parent3d25430b841d9cc31ee2f20384635e0714a8e9a0 (diff)
downloadcoreboot-1dde7ccfa8f405da2fe27d04e91dd6b29a9071bb.tar.gz
coreboot-1dde7ccfa8f405da2fe27d04e91dd6b29a9071bb.tar.bz2
coreboot-1dde7ccfa8f405da2fe27d04e91dd6b29a9071bb.zip
Replace remaining IS_ENABLED(CONFIG_*) with CONFIG()
Another run of find src/ -type f | xargs sed -i -e 's/IS_ENABLED\s*(CONFIG_/CONFIG(/g' Change-Id: I3243197ab852a3fbc3eb2e2e782966a350b78af2 Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/32224 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Julius Werner <jwerner@chromium.org>
Diffstat (limited to 'src/include/symbols.h')
-rw-r--r--src/include/symbols.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/symbols.h b/src/include/symbols.h
index c35e19123b2d..b67286ac2dcc 100644
--- a/src/include/symbols.h
+++ b/src/include/symbols.h
@@ -71,7 +71,7 @@ DECLARE_REGION(bl31)
* (Does not necessarily mean that the memory is accessible.) */
static inline int preram_symbols_available(void)
{
- return !IS_ENABLED(CONFIG_CACHE_AS_RAM) || ENV_CACHE_AS_RAM;
+ return !CONFIG(CACHE_AS_RAM) || ENV_CACHE_AS_RAM;
}
#endif /* __SYMBOLS_H */