From 1dde7ccfa8f405da2fe27d04e91dd6b29a9071bb Mon Sep 17 00:00:00 2001 From: Nico Huber Date: Sat, 6 Apr 2019 15:56:08 +0200 Subject: Replace remaining IS_ENABLED(CONFIG_*) with CONFIG() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Reviewed-on: https://review.coreboot.org/c/coreboot/+/32224 Tested-by: build bot (Jenkins) Reviewed-by: HAOUAS Elyes Reviewed-by: Kyösti Mälkki Reviewed-by: Paul Menzel Reviewed-by: Julius Werner --- src/include/symbols.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/include') diff --git a/src/include/symbols.h b/src/include/symbols.h index c35e19123b..b67286ac2d 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 */ -- cgit v1.2.3