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 <vapier@gentoo.org>
This commit is contained in:
Mike Frysinger 2008-10-06 04:19:34 -04:00
parent 70c4c032ea
commit 7133999e6f

View File

@ -344,10 +344,6 @@ void bfin_panic(struct pt_regs *regs)
); );
dump(regs); dump(regs);
dump_bfin_trace_buffer(); dump_bfin_trace_buffer();
printf( puts("\n");
"\n"
"Please reset the board\n"
"\n"
);
bfin_reset_or_hang(); bfin_reset_or_hang();
} }