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

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

commit 47623e5d090a2926725ed9ca68c441198ee5bb82
Author: simbit18 <[email protected]>
AuthorDate: Mon Feb 2 18:33:13 2026 +0100

    sched:  Fix Kconfig style
    
    - Remove spaces from Kconfig
    
    - Add TABs
    
    - Replace help => ---help---
    
    Signed-off-by: simbit18 <[email protected]>
---
 sched/Kconfig | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/sched/Kconfig b/sched/Kconfig
index c214c4cc53b..21d0b11d964 100644
--- a/sched/Kconfig
+++ b/sched/Kconfig
@@ -2092,23 +2092,23 @@ config HRTIMER
 if HRTIMER
 
 choice
-    prompt "HRTimer management data structure type"
-    default HRTIMER_TREE
+       prompt "HRTimer management data structure type"
+       default HRTIMER_TREE
 
 config HRTIMER_LIST
-    bool "List-based timer management"
-    help
-        Use a simple list to manage timers. This method is
-        suitable for systems with a small number of timers.
-        It is more memory-efficient but may become slower
-        as the number of timers increases.
+       bool "List-based timer management"
+       ---help---
+               Use a simple list to manage timers. This method is
+               suitable for systems with a small number of timers.
+               It is more memory-efficient but may become slower
+               as the number of timers increases.
 
 config HRTIMER_TREE
-    bool "RB-tree-based timer management"
-    help
-        Use a red-black tree to manage timers. This method
-        provides better performance for systems with many
-        timers, at the cost of slightly higher memory usage.
+       bool "RB-tree-based timer management"
+       ---help---
+               Use a red-black tree to manage timers. This method
+               provides better performance for systems with many
+               timers, at the cost of slightly higher memory usage.
 
 endchoice
 

Reply via email to