projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f4cdb6a
)
MIPS: Fix inconsistent formatting inside /proc/cpuinfo
author
John Crispin
<
[email protected]
>
Wed, 13 Mar 2013 19:54:34 +0000
(20:54 +0100)
committer
Ralf Baechle
<
[email protected]
>
Wed, 13 Mar 2013 22:08:36 +0000
(23:08 +0100)
There is a missing " " inside /proc/cpuinfo.
The bad commit was:
commit
a96102be700f87283f168942cd09a2b30f86f324
Author: Steven J. Hill <
[email protected]
>
Date: Fri Dec 7 04:31:36 2012 +0000
MIPS: Add printing of ISA version in cpuinfo.
Signed-off-by: John Crispin <
[email protected]
>
Cc:
[email protected]
Patchwork: https://patchwork.linux-mips.org/patch/4988/
Signed-off-by: Ralf Baechle <
[email protected]
>
arch/mips/kernel/proc.c
patch
|
blob
|
history
diff --git
a/arch/mips/kernel/proc.c
b/arch/mips/kernel/proc.c
index 135c4aadccbe35d9a49415170dce3d2b9e05a697..7a54f74b7818ad402a70221eb2090dc91f5643f8 100644
(file)
--- a/
arch/mips/kernel/proc.c
+++ b/
arch/mips/kernel/proc.c
@@
-67,7
+67,7
@@
static int show_cpuinfo(struct seq_file *m, void *v)
if (cpu_has_mips_r) {
seq_printf(m, "isa\t\t\t:");
if (cpu_has_mips_1)
- seq_printf(m, "%s", "mips1");
+ seq_printf(m, "%s", "
mips1");
if (cpu_has_mips_2)
seq_printf(m, "%s", " mips2");
if (cpu_has_mips_3)