From: Simon Glass Date: Sun, 12 Nov 2023 20:03:46 +0000 (-0700) Subject: dm: core: Correct reference to DM_SPL in SPL_DM_STATS X-Git-Url: http://git.dujemihanovic.xyz/img/sics.gif?a=commitdiff_plain;h=a07408384bc572a93ce1f56a48e9de7878d660f8;p=u-boot.git 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 --- diff --git a/drivers/core/Kconfig b/drivers/core/Kconfig index fe5c41d57e..209d90e01f 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