Commit 3e42e727 authored by Thorsten Blum's avatar Thorsten Blum Committed by Michael Ellerman

powerpc: Use str_plural() in cpu_init_thread_core_maps()

Fixes the following Coccinelle/coccicheck warning reported by
string_choices.cocci:

	opportunity for str_plural(tpc)
Signed-off-by: default avatarThorsten Blum <thorsten.blum@toblux.com>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
Link: https://msgid.link/20240331222249.107467-2-thorsten.blum@toblux.com
parent 39cd87c4
...@@ -405,7 +405,7 @@ static void __init cpu_init_thread_core_maps(int tpc) ...@@ -405,7 +405,7 @@ static void __init cpu_init_thread_core_maps(int tpc)
cpumask_set_cpu(i, &threads_core_mask); cpumask_set_cpu(i, &threads_core_mask);
printk(KERN_INFO "CPU maps initialized for %d thread%s per core\n", printk(KERN_INFO "CPU maps initialized for %d thread%s per core\n",
tpc, tpc > 1 ? "s" : ""); tpc, str_plural(tpc));
printk(KERN_DEBUG " (thread shift is %d)\n", threads_shift); printk(KERN_DEBUG " (thread shift is %d)\n", threads_shift);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment