Commit 46162ac2 authored by Helge Deller's avatar Helge Deller
Browse files

parisc: Improve CPU socket and core bootup info text



Improve CPU bootup info text from:
 CPU1: thread -1, cpu 0, socket 1
to
 CPU1: cpu core 0 of socket 1

Signed-off-by: default avatarHelge Deller <deller@gmx.de>
parent 2b41be48
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -101,8 +101,8 @@ void __init store_cpu_topology(unsigned int cpuid)

	update_siblings_masks(cpuid);

	pr_info("CPU%u: thread %d, cpu %d, socket %d\n",
		cpuid, cpu_topology[cpuid].thread_id,
	pr_info("CPU%u: cpu core %d of socket %d\n",
		cpuid,
		cpu_topology[cpuid].core_id,
		cpu_topology[cpuid].socket_id);
}