rpi: Clean up debug output

This commit is contained in:
Alexander von Gluck IV 2012-05-16 03:56:52 -05:00
parent 56b0f60189
commit a5453f6dd8
2 changed files with 3 additions and 2 deletions

View File

@ -17,7 +17,7 @@
extern "C" void
panic(const char* format, ...)
{
const char hint[] = "*** PANIC ***";
const char hint[] = "\n*** PANIC ***\n";
char buffer[512];
va_list list;
int length;

View File

@ -79,5 +79,6 @@ serial_init(void)
serial_enable();
serial_puts("Serial startup\n", 15);
serial_puts("\n\n********************\n", 23);
serial_puts("Haiku serial startup\n", 21);
}