projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
947df17
)
[MIPS] Separate CPU entries in /proc/cpuinfo with a blank line.
author
Martin Michlmayr
<tbm@cyrius.com>
Mon, 20 Mar 2006 02:51:20 +0000
(
02:51
+0000)
committer
Ralf Baechle
<ralf@linux-mips.org>
Tue, 21 Mar 2006 13:27:48 +0000
(13:27 +0000)
Put in a blank line between CPU entries in /proc/cpuinfo, just like
most other architectures (i386, ia64, x86_64) do.
Signed-off-by: Martin Michlmayr <tbm@cyrius.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
---
arch/mips/kernel/proc.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/mips/kernel/proc.c
b/arch/mips/kernel/proc.c
index 86fe15b273cd60c5df1d0198c35f14a0f89fd0a4..84ab959f924ac57d1b05edc73aa48ce84c2da04f 100644
(file)
--- a/
arch/mips/kernel/proc.c
+++ b/
arch/mips/kernel/proc.c
@@
-135,6
+135,7
@@
static int show_cpuinfo(struct seq_file *m, void *v)
cpu_has_vce ? "%u" : "not available");
seq_printf(m, fmt, 'D', vced_count);
seq_printf(m, fmt, 'I', vcei_count);
+ seq_printf(m, "\n");
return 0;
}