clocksource: Make the int help prompt unit readable in ncurses
authorBorislav Petkov (AMD) <bp@alien8.de>
Sun, 28 Apr 2024 10:21:43 +0000 (12:21 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Mon, 29 Apr 2024 22:12:22 +0000 (00:12 +0200)
commit54db412e618e9c43e5167f809a901f554e8c43e2
tree69e9253540d65d2350e78d30e5ca29144aeac85f
parentb7c8e1f8a7b4352c1d0b4310686385e3cf6c104a
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
kernel/time/Kconfig