diff options
author | Marek BehĂșn | 2021-10-09 19:33:45 +0200 |
---|---|---|
committer | Stefan Roese | 2021-10-21 07:39:05 +0200 |
commit | 2c8a4e4d7613bb053342e67edf19dc46c21e20fe (patch) | |
tree | bc4ca407ce3ff673ab5f5ee0883412817ffda2ca /include/configs | |
parent | dc096a5e905b1ccd53d8337ec16414ec076602ea (diff) |
arm: mvebu: turris_omnia: Move SPL's SYS_MALLOC_SIMPLE to Kconfig
Instead of declaring CONFIG_SYS_MALLOC_SIMPLE dependant on
CONFIG_SPL_BUILD in board config header, select
CONFIG_SPL_SYS_MALLOC_SIMPLE in Kconfig.
Signed-off-by: Marek BehĂșn <marek.behun@nic.cz>
Reviewed-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/turris_omnia.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/configs/turris_omnia.h b/include/configs/turris_omnia.h index 8d7d5c2bfc3..273ff85ff3d 100644 --- a/include/configs/turris_omnia.h +++ b/include/configs/turris_omnia.h @@ -33,10 +33,6 @@ #define CONFIG_SPL_BSS_START_ADDR (0x40000000 + CONFIG_SPL_SIZE) #define CONFIG_SPL_BSS_MAX_SIZE (16 << 10) -#ifdef CONFIG_SPL_BUILD -#define CONFIG_SYS_MALLOC_SIMPLE -#endif - #define CONFIG_SPL_STACK (0x40000000 + ((192 - 16) << 10)) #define CONFIG_SPL_BOOTROM_SAVE (CONFIG_SPL_STACK + 4) #define CONFIG_SPL_DRIVERS_MISC |