From 48ab052e913fe4afa26d67d7159ac7f0ebebde69 Mon Sep 17 00:00:00 2001 From: Benjamin Herrenschmidt Date: Sat, 24 Jun 2017 14:17:19 -0500 Subject: cpu: Add a space to #threads message Signed-off-by: Benjamin Herrenschmidt Signed-off-by: Michael Neuling Signed-off-by: Stewart Smith --- core/cpu.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/cpu.c b/core/cpu.c index 7af8fc6..8448dfd 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"); -- cgit v1.1