The following commit has been merged in the linux branch: commit 2908df9e2ce85e4de19ba81ac619acdf93a8bfaa Author: Paul Mundt lethal@linux-sh.org Date: Wed Oct 14 14:13:41 2009 +0900
sh: Tidy up SMP cpuinfo.
Trivial change for cleaning up the cpuinfo pretty printing on SMP, adds a newline between CPUs.
Signed-off-by: Paul Mundt lethal@linux-sh.org
diff --git a/arch/sh/kernel/setup.c b/arch/sh/kernel/setup.c index f9d44f8..99b4fb5 100644 --- a/arch/sh/kernel/setup.c +++ b/arch/sh/kernel/setup.c @@ -549,6 +549,8 @@ static int show_cpuinfo(struct seq_file *m, void *v)
if (cpu == 0) seq_printf(m, "machine\t\t: %s\n", get_system_type()); + else + seq_printf(m, "\n");
seq_printf(m, "processor\t: %d\n", cpu); seq_printf(m, "cpu family\t: %s\n", init_utsname()->machine);