aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorPetri Gynther <pgynther@google.com>2015-05-08 15:10:00 -0700
committerRalf Baechle <ralf@linux-mips.org>2015-05-12 23:50:33 +0200
commit2d2ec2f7c9560aa12417e5d8c26fe159cfdd3827 (patch)
treec26e664445748071e9f493e540fd6efd402f5b43 /arch
parentMIPS: Fix wrong CHECKFLAGS (sparse builds) with GCC 5.1 (diff)
downloadlinux-dev-2d2ec2f7c9560aa12417e5d8c26fe159cfdd3827.tar.xz
linux-dev-2d2ec2f7c9560aa12417e5d8c26fe159cfdd3827.zip
MIPS: traps: remove extra Tainted: line from __show_regs() output
__show_regs() calls show_regs_print_info(), which already outputs the Tainted: information. So, no need to output it twice. Signed-off-by: Petri Gynther <pgynther@google.com> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/9997/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/mips/kernel/traps.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/mips/kernel/traps.c b/arch/mips/kernel/traps.c
index ba32e48d4697..d2d1c1933bc9 100644
--- a/arch/mips/kernel/traps.c
+++ b/arch/mips/kernel/traps.c
@@ -269,7 +269,6 @@ static void __show_regs(const struct pt_regs *regs)
*/
printk("epc : %0*lx %pS\n", field, regs->cp0_epc,
(void *) regs->cp0_epc);
- printk(" %s\n", print_tainted());
printk("ra : %0*lx %pS\n", field, regs->regs[31],
(void *) regs->regs[31]);