Blackfin: don't bother displaying reboot msg when crashing
authorMike Frysinger <vapier@gentoo.org>
Mon, 6 Oct 2008 08:19:34 +0000 (04:19 -0400)
committerMike Frysinger <vapier@gentoo.org>
Thu, 23 Oct 2008 09:03:50 +0000 (05:03 -0400)
The hang function already tells you to reboot, so no point in showing it
twice.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
cpu/blackfin/traps.c

index 2eb45b5..7307f5d 100644 (file)
@@ -344,10 +344,6 @@ void bfin_panic(struct pt_regs *regs)
        );
        dump(regs);
        dump_bfin_trace_buffer();
-       printf(
-               "\n"
-               "Please reset the board\n"
-               "\n"
-       );
+       puts("\n");
        bfin_reset_or_hang();
 }