aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugen Hristev <eugen.hristev@microchip.com>2022-01-04 18:20:19 +0200
committerTom Rini <trini@konsulko.com>2022-01-14 12:26:42 -0500
commit4650bd9c8d7e1ae18c05b506d5ac5ffadc9a1729 (patch)
treebc4adbf092cf372c0d2f2ee78260cd3192eab9ff
parentebbe5add2a9f8fa6d129a51e3a408d25c7d7f3c3 (diff)
downloadu-boot-WIP/2022-01-14-assorted-fixes.zip
u-boot-WIP/2022-01-14-assorted-fixes.tar.gz
u-boot-WIP/2022-01-14-assorted-fixes.tar.bz2
lib: Kconfig: fix PHANDLE_CHECK_SEQ position outside of menuWIP/2022-01-14-assorted-fixes
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 <eugen.hristev@microchip.com> Reviewed-by: Aswath Govindraju <a-govindraju@ti.com> Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r--lib/Kconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Kconfig b/lib/Kconfig
index 1883ac7..35fc9e4 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