aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-09-26 08:14:30 -0600
committerTom Rini <trini@konsulko.com>2023-09-26 11:25:25 -0400
commit57ba1ee6e2b7625db8f86117783d78fcaebd4c84 (patch)
treeea344d1623b53df84eb53748f8d66d3810ceac6d
parent8fd5eb61e66f5dbdf4c9339360a0ecfaf96b27fa (diff)
downloadu-boot-57ba1ee6e2b7625db8f86117783d78fcaebd4c84.zip
u-boot-57ba1ee6e2b7625db8f86117783d78fcaebd4c84.tar.gz
u-boot-57ba1ee6e2b7625db8f86117783d78fcaebd4c84.tar.bz2
dm: core: Correct help in TPL_DM and VPL_DM
There are copying errors in the help. Fix these. Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r--drivers/core/Kconfig12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/core/Kconfig b/drivers/core/Kconfig
index 4c5a00f..fe5c41d 100644
--- a/drivers/core/Kconfig
+++ b/drivers/core/Kconfig
@@ -27,12 +27,12 @@ config TPL_DM
help
Enable driver model in TPL. You will need to provide a
suitable malloc() implementation. If you are not using the
- full malloc() enabled by CFG_SPL_SYS_MALLOC_START,
+ full malloc() enabled by CFG_TPL_SYS_MALLOC_START,
consider using CONFIG_TPL_SYS_MALLOC_SIMPLE. In that case you
- must provide CONFIG_SPL_SYS_MALLOC_F_LEN to set the size.
+ must provide CONFIG_TPL_SYS_MALLOC_F_LEN to set the size.
In most cases driver model will only allocate a few uclasses
- and devices in SPL, so 1KB should be enough. See
- CONFIG_SPL_SYS_MALLOC_F_LEN for more details on how to enable it.
+ and devices in TPL, so 1KB should be enough. See
+ CONFIG_TPL_SYS_MALLOC_F_LEN for more details on how to enable it.
Disable this for very small implementations.
config VPL_DM
@@ -42,8 +42,8 @@ config VPL_DM
help
Enable driver model in VPL. You will need to provide a
suitable malloc() implementation. If you are not using the
- full malloc() enabled by CFG_SPL_SYS_MALLOC_START,
- consider using CONFIG_SPL_SYS_MALLOC_SIMPLE.
+ full malloc() enabled by CFG_TPL_SYS_MALLOC_START,
+ consider using CONFIG_TPL_SYS_MALLOC_SIMPLE.
config DM_WARN
bool "Enable warnings in driver model"