aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-11-12 13:03:46 -0700
committerTom Rini <trini@konsulko.com>2023-11-16 18:59:58 -0500
commita07408384bc572a93ce1f56a48e9de7878d660f8 (patch)
tree3163d3c508c1e7a9e13bb4e411843d1ca27e9c0f
parent6d6ea52b629c384fb8605678b9003d2a077f9148 (diff)
downloadu-boot-a07408384bc572a93ce1f56a48e9de7878d660f8.zip
u-boot-a07408384bc572a93ce1f56a48e9de7878d660f8.tar.gz
u-boot-a07408384bc572a93ce1f56a48e9de7878d660f8.tar.bz2
dm: core: Correct reference to DM_SPL in SPL_DM_STATS
This does not existing anymore. Update SPL_DM_STATS to use the correct Kconfig option, which is SPL_DM Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r--drivers/core/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/core/Kconfig b/drivers/core/Kconfig
index fe5c41d..209d90e 100644
--- a/drivers/core/Kconfig
+++ b/drivers/core/Kconfig
@@ -88,7 +88,7 @@ config DM_STATS
config SPL_DM_STATS
bool "Collect and show driver model stats in SPL"
- depends on DM_SPL
+ depends on SPL_DM
help
Enable this to collect and display memory statistics about driver
model. This can help to figure out where all the memory is going and