Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'nios2_update_for_v6.14' of git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux

Pull nios2 fixlet from Dinh Nguyen:

- Use str_yes_no() helper function

* tag 'nios2_update_for_v6.14' of git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux:
nios2: Use str_yes_no() helper in show_cpuinfo()

+5 -5
+5 -5
arch/nios2/kernel/cpuinfo.c
··· 143 143 " DIV:\t\t%s\n" 144 144 " BMX:\t\t%s\n" 145 145 " CDX:\t\t%s\n", 146 - cpuinfo.has_mul ? "yes" : "no", 147 - cpuinfo.has_mulx ? "yes" : "no", 148 - cpuinfo.has_div ? "yes" : "no", 149 - cpuinfo.has_bmx ? "yes" : "no", 150 - cpuinfo.has_cdx ? "yes" : "no"); 146 + str_yes_no(cpuinfo.has_mul), 147 + str_yes_no(cpuinfo.has_mulx), 148 + str_yes_no(cpuinfo.has_div), 149 + str_yes_no(cpuinfo.has_bmx), 150 + str_yes_no(cpuinfo.has_cdx)); 151 151 152 152 seq_printf(m, 153 153 "Icache:\t\t%ukB, line length: %u\n",