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: v2025.01-rc5-pxa1908~21738^2~9 X-Git-Url: http://git.dujemihanovic.xyz/html/static/gitweb.css?a=commitdiff_plain;h=7133999e6f62a9a01f6a8ffe234b8532b3ad1e4b;p=u-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 2eb45b59cd..7307f5df39 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(); }