sched: Fix Kconfig style

- Remove spaces from Kconfig

- Add TABs

- Replace help => ---help---

Signed-off-by: simbit18 <simbit18@gmail.com>
This commit is contained in:
simbit18
2026-02-02 18:33:13 +01:00
committed by Lup Yuen Lee
parent 63aefd9975
commit 47623e5d09
+13 -13
View File
@@ -2092,23 +2092,23 @@ config HRTIMER
if HRTIMER if HRTIMER
choice choice
prompt "HRTimer management data structure type" prompt "HRTimer management data structure type"
default HRTIMER_TREE default HRTIMER_TREE
config HRTIMER_LIST config HRTIMER_LIST
bool "List-based timer management" bool "List-based timer management"
help ---help---
Use a simple list to manage timers. This method is Use a simple list to manage timers. This method is
suitable for systems with a small number of timers. suitable for systems with a small number of timers.
It is more memory-efficient but may become slower It is more memory-efficient but may become slower
as the number of timers increases. as the number of timers increases.
config HRTIMER_TREE config HRTIMER_TREE
bool "RB-tree-based timer management" bool "RB-tree-based timer management"
help ---help---
Use a red-black tree to manage timers. This method Use a red-black tree to manage timers. This method
provides better performance for systems with many provides better performance for systems with many
timers, at the cost of slightly higher memory usage. timers, at the cost of slightly higher memory usage.
endchoice endchoice