You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by pk...@apache.org on 2022/01/12 20:45:29 UTC

[incubator-nuttx] branch master updated: esp32s2: Fix data cache option in menuconfig

This is an automated email from the ASF dual-hosted git repository.

pkarashchenko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new 7b32849  esp32s2: Fix data cache option in menuconfig
7b32849 is described below

commit 7b32849b8448594c068d2cd02176ac40c4adf6d4
Author: Alan C. Assis <ac...@gmail.com>
AuthorDate: Wed Jan 12 16:15:57 2022 -0300

    esp32s2: Fix data cache option in menuconfig
---
 arch/xtensa/src/esp32s2/Kconfig | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/xtensa/src/esp32s2/Kconfig b/arch/xtensa/src/esp32s2/Kconfig
index 23152d1..3eead35 100644
--- a/arch/xtensa/src/esp32s2/Kconfig
+++ b/arch/xtensa/src/esp32s2/Kconfig
@@ -40,14 +40,14 @@ config ESP32S2_INSTRUCTION_CACHE_16KB
 endchoice # ESP32S2 Instruction CACHE size
 
 choice
-	prompt "Instruction CACHE Size"
-	default ESP32S2_INSTRUCTION_CACHE_8KB
+	prompt "Data CACHE Size"
+	default ESP32S2_DATA_CACHE_8KB
 	depends on ARCH_CHIP_ESP32S2
 
 config ESP32S2_DATA_CACHE_0KB
 	bool "No DATA CACHE"
 	---help---
-		Use 8KB of SRAM as Data Cache
+		Disable Data Cache
 
 config ESP32S2_DATA_CACHE_8KB
 	bool "8KB"