Blackfin: do not append newlines to panic() messages

The panic() function already handles newlines for us.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
Mike Frysinger
2009-04-29 06:26:46 +00:00
parent 729a3fa733
commit d8804adf52
3 changed files with 7 additions and 7 deletions

View File

@@ -222,7 +222,7 @@ asmlinkage void double_fault_c(struct pt_regs *fp)
show_regs(fp);
}
#endif
panic("Double Fault - unrecoverable event\n");
panic("Double Fault - unrecoverable event");
}
@@ -1246,5 +1246,5 @@ void panic_cplb_error(int cplb_panic, struct pt_regs *fp)
dump_bfin_mem(fp);
show_regs(fp);
dump_stack();
panic("Unrecoverable event\n");
panic("Unrecoverable event");
}