]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
MIPS: traps: remove extra Tainted: line from __show_regs() output
authorPetri Gynther <pgynther@google.com>
Fri, 8 May 2015 22:10:00 +0000 (15:10 -0700)
committerRalf Baechle <ralf@linux-mips.org>
Tue, 12 May 2015 21:50:33 +0000 (23:50 +0200)
__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>
arch/mips/kernel/traps.c

index ba32e48d4697193f3410edd79153d392ab0d8311..d2d1c1933bc9f598efaa81735d132af1ff12adee 100644 (file)
@@ -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]);