[Skiboot] [PATCH v2 14/23] cpu: Add a space to #threads message
Michael Neuling
mikey at neuling.org
Sun Jun 25 05:17:19 AEST 2017
From: Benjamin Herrenschmidt <benh at kernel.crashing.org>
Signed-off-by: Benjamin Herrenschmidt <benh at kernel.crashing.org>
Signed-off-by: Michael Neuling <mikey at neuling.org>
---
core/cpu.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/core/cpu.c b/core/cpu.c
index 7af8fc69ce..8448dfd6db 100644
--- a/core/cpu.c
+++ b/core/cpu.c
@@ -712,19 +712,19 @@ void init_boot_cpu(void)
cpu_thread_count = 4;
cpu_max_pir = SPR_PIR_P7_MASK;
prlog(PR_INFO, "CPU: P7 generation processor"
- "(max %d threads/core)\n", cpu_thread_count);
+ " (max %d threads/core)\n", cpu_thread_count);
break;
case proc_gen_p8:
cpu_thread_count = 8;
cpu_max_pir = SPR_PIR_P8_MASK;
prlog(PR_INFO, "CPU: P8 generation processor"
- "(max %d threads/core)\n", cpu_thread_count);
+ " (max %d threads/core)\n", cpu_thread_count);
break;
case proc_gen_p9:
cpu_thread_count = 4;
cpu_max_pir = SPR_PIR_P9_MASK;
prlog(PR_INFO, "CPU: P9 generation processor"
- "(max %d threads/core)\n", cpu_thread_count);
+ " (max %d threads/core)\n", cpu_thread_count);
break;
default:
prerror("CPU: Unknown PVR, assuming 1 thread\n");
--
2.11.0
More information about the Skiboot
mailing list