diff options
author | Thorsten Blum <thorsten.blum@linux.dev> | 2024-12-09 12:06:39 +0100 |
---|---|---|
committer | Dinh Nguyen <dinguyen@kernel.org> | 2024-12-17 01:41:58 +0100 |
commit | 0efbca0fec7d1665e19fa008ba95daab71f76f4d (patch) | |
tree | 7842af0e625d39ae8b60dbcb6cab29d96bea2c31 /arch/nios2 | |
parent | Linux 6.13-rc1 (diff) | |
download | linux-0efbca0fec7d1665e19fa008ba95daab71f76f4d.tar.xz linux-0efbca0fec7d1665e19fa008ba95daab71f76f4d.zip |
nios2: Use str_yes_no() helper in show_cpuinfo()
Remove hard-coded strings by using the str_yes_no() helper function.
Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
Signed-off-by: Dinh Nguyen <dinguyen@kernel.org>
Diffstat (limited to 'arch/nios2')
-rw-r--r-- | arch/nios2/kernel/cpuinfo.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/nios2/kernel/cpuinfo.c b/arch/nios2/kernel/cpuinfo.c index 338849c430a5..7b1e8f9128e9 100644 --- a/arch/nios2/kernel/cpuinfo.c +++ b/arch/nios2/kernel/cpuinfo.c @@ -143,11 +143,11 @@ static int show_cpuinfo(struct seq_file *m, void *v) " DIV:\t\t%s\n" " BMX:\t\t%s\n" " CDX:\t\t%s\n", - cpuinfo.has_mul ? "yes" : "no", - cpuinfo.has_mulx ? "yes" : "no", - cpuinfo.has_div ? "yes" : "no", - cpuinfo.has_bmx ? "yes" : "no", - cpuinfo.has_cdx ? "yes" : "no"); + str_yes_no(cpuinfo.has_mul), + str_yes_no(cpuinfo.has_mulx), + str_yes_no(cpuinfo.has_div), + str_yes_no(cpuinfo.has_bmx), + str_yes_no(cpuinfo.has_cdx)); seq_printf(m, "Icache:\t\t%ukB, line length: %u\n", |