From 7133999e6f62a9a01f6a8ffe234b8532b3ad1e4b Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Mon, 6 Oct 2008 04:19:34 -0400 Subject: [PATCH] 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 --- cpu/blackfin/traps.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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(); }