From: Eugen Hristev Date: Tue, 4 Jan 2022 16:20:19 +0000 (+0200) Subject: lib: Kconfig: fix PHANDLE_CHECK_SEQ position outside of menu X-Git-Tag: v2025.01-rc5-pxa1908~1583^2 X-Git-Url: http://git.dujemihanovic.xyz/img/static/gitweb.css?a=commitdiff_plain;h=97f2a749d5126b2908dd282969c02c3632417c68;p=u-boot.git lib: Kconfig: fix PHANDLE_CHECK_SEQ position outside of menu CONFIG_PHANDLE_CHECK_SEQ is outside of the menu 'Library routines' thus it's invisible in menuconfig and cannot be selected. Fix this by moving the 'endmenu' after the PHANDLE_CHECK_SEQ definition Fixes: c589132a1d ("fdt: Use phandle to distinguish DT nodes with same name") Signed-off-by: Eugen Hristev Reviewed-by: Aswath Govindraju Reviewed-by: Simon Glass --- diff --git a/lib/Kconfig b/lib/Kconfig index 1883ac734d..35fc9e418c 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -837,11 +837,11 @@ config LMB_RESERVED_REGIONS Define the number of supported reserved regions in the library logical memory blocks. -endmenu - config PHANDLE_CHECK_SEQ bool "Enable phandle check while getting sequence number" help When there are multiple device tree nodes with same name, enable this config option to distinguish them using phandles in fdtdec_get_alias_seq() function. + +endmenu