From: Mike Frysinger Date: Mon, 6 Oct 2008 08:19:34 +0000 (-0400) Subject: Blackfin: don't bother displaying reboot msg when crashing X-Git-Tag: v2009.01-rc1~102^2~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7133999e6f62a9a01f6a8ffe234b8532b3ad1e4b;p=kernel%2Fu-boot.git Blackfin: don't bother displaying reboot msg when crashing The hang function already tells you to reboot, so no point in showing it twice. Signed-off-by: Mike Frysinger --- diff --git a/cpu/blackfin/traps.c b/cpu/blackfin/traps.c index 2eb45b5..7307f5d 100644 --- a/cpu/blackfin/traps.c +++ b/cpu/blackfin/traps.c @@ -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(); }