This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit 461e7bd91fd1bf6f770b06952f55da8c71085de6 Author: Maarten Zanders <[email protected]> AuthorDate: Tue Feb 24 11:05:31 2026 +0100 arch/arm/imx9: Kconfig: remove redundant menu wrapper around chip selection. The menu and choice had the same purpose; keep only the choice. Signed-off-by: Maarten Zanders <[email protected]> --- arch/arm/src/imx9/Kconfig | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/arch/arm/src/imx9/Kconfig b/arch/arm/src/imx9/Kconfig index e671652653a..124812d674d 100644 --- a/arch/arm/src/imx9/Kconfig +++ b/arch/arm/src/imx9/Kconfig @@ -5,10 +5,8 @@ if ARCH_CHIP_IMX9_CORTEX_M -menu "i.MX9 Chip Selection" - choice - prompt "i.MX9 Core Configuration" + prompt "i.MX9 Core Selection" default ARCH_CHIP_IMX95_M7 config ARCH_CHIP_IMX95_M7 @@ -21,9 +19,7 @@ config ARCH_CHIP_IMX95_M7 select ARMV7M_HAVE_DTCM select IMX9_HAVE_MU -endchoice # i.MX9 Chip Selection - -endmenu # "i.MX9 Chip Selection" +endchoice # i.MX9 Core Selection config IMX9_HAVE_MU bool
