You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2021/07/23 09:32:30 UTC

[incubator-nuttx] 03/03: Kconfig: remove empty help sections

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/incubator-nuttx.git

commit b87333bae8277d138c3c7128de629b55951502bf
Author: jordi <jo...@midokura.com>
AuthorDate: Fri Jul 23 07:47:26 2021 +0200

    Kconfig: remove empty help sections
    
    To avoid the setconfig warning: "has 'help' but empty help text"
---
 arch/arm/src/cxd56xx/Kconfig                 | 1 -
 arch/arm/src/efm32/Kconfig                   | 6 +++---
 arch/arm/src/max326xx/Kconfig                | 2 +-
 arch/arm/src/stm32/Kconfig                   | 2 +-
 boards/risc-v/esp32c3/esp32c3-devkit/Kconfig | 1 -
 net/usrsock/Kconfig                          | 4 ----
 sched/Kconfig                                | 2 +-
 7 files changed, 6 insertions(+), 12 deletions(-)

diff --git a/arch/arm/src/cxd56xx/Kconfig b/arch/arm/src/cxd56xx/Kconfig
index c168c3e..ef9b7e1 100644
--- a/arch/arm/src/cxd56xx/Kconfig
+++ b/arch/arm/src/cxd56xx/Kconfig
@@ -1389,7 +1389,6 @@ config CXD56_TESTSET_WITH_HWSEM
 	bool "Use custom testset based on hardware semaphore"
 	default n if CXD56_USE_SYSBUS
 	default y if !CXD56_USE_SYSBUS
-	---help---
 
 endif
 
diff --git a/arch/arm/src/efm32/Kconfig b/arch/arm/src/efm32/Kconfig
index 42247b6..cb091a2 100644
--- a/arch/arm/src/efm32/Kconfig
+++ b/arch/arm/src/efm32/Kconfig
@@ -129,17 +129,17 @@ config EFM32_DMA
 	select ARCH_DMA
 
 config EFM32_RMU
-	bool "Reset Management Unit (RMU) "
+	bool "Reset Management Unit (RMU)"
 	default n
 
 config EFM32_FLASHPROG
-	bool "Enable Erase/Write flash function (MSC) "
+	bool "Enable Erase/Write flash function (MSC)"
 	default n
 	select ARCH_HAVE_PROGMEM
 	select ARCH_HAVE_RAMFUNCS
 
 config EFM32_RMU_DEBUG
-	bool "Reset Management Unit (RMU) DEBUG "
+	bool "Reset Management Unit (RMU) DEBUG"
 	default n
 	depends on EFM32_RMU && DEBUG_FEATURES
 
diff --git a/arch/arm/src/max326xx/Kconfig b/arch/arm/src/max326xx/Kconfig
index feae4d2..5286f3c 100644
--- a/arch/arm/src/max326xx/Kconfig
+++ b/arch/arm/src/max326xx/Kconfig
@@ -226,7 +226,7 @@ config MAX326XX_WDOG
 	depends on MAX326XX_HAVE_WDOG
 
 config MAX326XX_WWDOG0
-	bool "Windowed Watchdog Timer (WDT0) "
+	bool "Windowed Watchdog Timer (WDT0)"
 	default n
 	depends on MAX326XX_HAVE_WWDOG
 
diff --git a/arch/arm/src/stm32/Kconfig b/arch/arm/src/stm32/Kconfig
index 6ad9f39..0f6670b 100644
--- a/arch/arm/src/stm32/Kconfig
+++ b/arch/arm/src/stm32/Kconfig
@@ -10161,7 +10161,7 @@ config STM32_I2CTIMEOTICKS
 	depends on STM32_I2C && !STM32_I2C_DYNTIMEO
 
 config STM32_I2C_DUTY16_9
-	bool "Frequency with Tlow/Thigh = 16/9 "
+	bool "Frequency with Tlow/Thigh = 16/9"
 	default n
 	depends on STM32_I2C
 
diff --git a/boards/risc-v/esp32c3/esp32c3-devkit/Kconfig b/boards/risc-v/esp32c3/esp32c3-devkit/Kconfig
index afe5a2a..153e528 100644
--- a/boards/risc-v/esp32c3/esp32c3-devkit/Kconfig
+++ b/boards/risc-v/esp32c3/esp32c3-devkit/Kconfig
@@ -40,7 +40,6 @@ endif # PM
 config ESP32C3_DEVKIT_RUN_IRAM
 	bool "Run from IRAM"
 	default n
-	---help---
 
 choice
   prompt "SPIFLASH File System"
diff --git a/net/usrsock/Kconfig b/net/usrsock/Kconfig
index d56bdd2..d5c2504 100644
--- a/net/usrsock/Kconfig
+++ b/net/usrsock/Kconfig
@@ -41,12 +41,10 @@ config NET_USRSOCK_NPOLLWAITERS
 config NET_USRSOCK_NO_INET
 	bool "Disable PF_INET for usrsock"
 	default n
-	---help---
 
 config NET_USRSOCK_NO_INET6
 	bool "Disable PF_INET6 for usrsock"
 	default n
-	---help---
 
 config NET_USRSOCK_UDP
 	bool "User-space daemon provides UDP sockets"
@@ -58,12 +56,10 @@ config NET_USRSOCK_TCP
 	bool "User-space daemon provides TCP sockets"
 	default n
 	select NET_TCP
-	---help---
 
 config NET_USRSOCK_OTHER
 	bool "Enable other protocol families in addition of INET & INET6"
 	default n
-	---help---
 
 endif # NET_USRSOCK
 endmenu # User-space networking stack API
diff --git a/sched/Kconfig b/sched/Kconfig
index c14a088..4c0d190 100644
--- a/sched/Kconfig
+++ b/sched/Kconfig
@@ -1131,7 +1131,7 @@ config PATH_MAX
 endmenu # Files and I/O
 
 menuconfig PRIORITY_INHERITANCE
-	bool "Enable priority inheritance "
+	bool "Enable priority inheritance"
 	default n
 	---help---
 		Set to enable support for priority inheritance on mutexes and semaphores.