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

View File

@@ -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