From b61ea62b6f09136e08f7fe7cf8a1012b5c5042b3 Mon Sep 17 00:00:00 2001 From: Dylan Hung Date: Tue, 13 Jul 2021 15:20:47 +0800 Subject: [PATCH] arch: give the choice "Cache type" a name Give the choice a name so that the soc/board developers can change the default selection in their Kconfig.*. For example: choice CACHE_TYPE default HAS_EXTERNAL_CACHE endchoice There was a similar issue had beed discussed: https://github.com/zephyrproject-rtos/zephyr/issues/6948 Signed-off-by: Dylan Hung Change-Id: I07c3e78a5243b30912f8e44fa3181fa163016318 --- arch/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/Kconfig b/arch/Kconfig index 7e19ab4621e..3238c9de8ae 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -923,7 +923,7 @@ config ICACHE_LINE_SIZE Detect automatically at runtime by selecting ICACHE_LINE_SIZE_DETECT. -choice +choice CACHE_TYPE prompt "Cache type" depends on CACHE_MANAGEMENT default HAS_ARCH_CACHE