From: Simon Glass Date: Tue, 26 Sep 2023 14:14:28 +0000 (-0600) Subject: Tidy up uses of CONFIG_SYS_MALLOC_F_LEN X-Git-Tag: v2024.01-rc1~35^2~29 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=34bacebd0aa3bf22e107341c834b2ed798466138;p=pandora-u-boot.git Tidy up uses of CONFIG_SYS_MALLOC_F_LEN Use CONFIG_SYS_MALLOC_F instead to of CONFIG_SYS_MALLOC_F_LEN to determine whether pre-relocation malloc() is enabled. Signed-off-by: Simon Glass --- diff --git a/Makefile b/Makefile index 8af1fa9468b..f67888b1b59 100644 --- a/Makefile +++ b/Makefile @@ -1287,7 +1287,7 @@ binary_size_check: u-boot-nodtb.bin FORCE fi ifeq ($(CONFIG_INIT_SP_RELATIVE)$(CONFIG_OF_SEPARATE),yy) -ifneq ($(CONFIG_SYS_MALLOC_F_LEN),) +ifneq ($(CONFIG_SYS_MALLOC_F),) subtract_sys_malloc_f_len = space=$$(($${space} - $(CONFIG_SYS_MALLOC_F_LEN))) else subtract_sys_malloc_f_len = true