Skip to content
This repository was archived by the owner on Nov 8, 2023. It is now read-only.

Commit 54db412

Browse files
bp3tk0vKAGA-KOKO
authored andcommitted
clocksource: Make the int help prompt unit readable in ncurses
When doing make menuconfig and searching for the CLOCKSOURCE_WATCHDOG_MAX_SKEW_US config item, the help says: │ Symbol: CLOCKSOURCE_WATCHDOG_MAX_SKEW_US [=125] │ Type : integer │ Range : [50 1000] │ Defined at kernel/time/Kconfig:204 │ Prompt: Clocksource watchdog maximum allowable skew (in s) ^^^ │ Depends on: GENERIC_CLOCKEVENTS [=y] && CLOCKSOURCE_WATCHDOG [=y] because on some terminals, it cannot display the 'μ' char, unicode number 0x3bc. So simply write it out so that there's no trouble. Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Acked-by: Paul E. McKenney <paulmck@kernel.org> Acked-by: Randy Dunlap <rdunlap@infradead.org> Link: https://lore.kernel.org/r/20240428102143.26764-1-bp@kernel.org
1 parent b7c8e1f commit 54db412

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/time/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ config HIGH_RES_TIMERS
202202
the size of the kernel image.
203203

204204
config CLOCKSOURCE_WATCHDOG_MAX_SKEW_US
205-
int "Clocksource watchdog maximum allowable skew (in μs)"
205+
int "Clocksource watchdog maximum allowable skew (in microseconds)"
206206
depends on CLOCKSOURCE_WATCHDOG
207207
range 50 1000
208208
default 125

0 commit comments

Comments
 (0)