aboutsummaryrefslogtreecommitdiff
path: root/Kconfig
diff options
context:
space:
mode:
authorJohn Keeping <jkeeping@inmusicbrands.com>2023-11-14 11:30:17 +0000
committerTom Rini <trini@konsulko.com>2023-11-17 11:58:26 -0500
commite319ef02fb5accff6372ccbd23556713c3d1945d (patch)
treec5d2677c5663c15d481382b756bb7833d4d73ac9 /Kconfig
parent45c4b276f0a4d67e06c94de3d0a5dadf4bee530a (diff)
downloadu-boot-e319ef02fb5accff6372ccbd23556713c3d1945d.zip
u-boot-e319ef02fb5accff6372ccbd23556713c3d1945d.tar.gz
u-boot-e319ef02fb5accff6372ccbd23556713c3d1945d.tar.bz2
spl: fix TPL_SYS_MALLOC_F description
This config option enables the malloc() pool in TPL not the SPL. Fix the description to accurately reflect this. Fixes: fd8497dae54 (spl: Create proper symbols for enabling the malloc() pool) Signed-off-by: John Keeping <jkeeping@inmusicbrands.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'Kconfig')
-rw-r--r--Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kconfig b/Kconfig
index 7df91d7..00ed1ec 100644
--- a/Kconfig
+++ b/Kconfig
@@ -327,7 +327,7 @@ config SPL_SYS_MALLOC_F_LEN
malloc() region in SDRAM once it is inited.
config TPL_SYS_MALLOC_F
- bool "Enable malloc() pool in SPL"
+ bool "Enable malloc() pool in TPL"
depends on SYS_MALLOC_F && TPL
default y if SPL_SYS_MALLOC_F
help