*** empty log message ***

git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1290 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Greg Watson 2003-11-15 15:47:53 +00:00
parent 61065bc537
commit 354955799b
1 changed files with 2 additions and 2 deletions

View File

@ -20,8 +20,8 @@ extern void uart8250_tx_byte(unsigned, unsigned char);
void console_tx_byte(unsigned char byte) void console_tx_byte(unsigned char byte)
{ {
if (byte == '\n') if (byte == '\n')
uart8250_tx_byte(UART0_IO_BASE, '\r'); uart8250_tx_byte(TTYS0_BASE, '\r');
uart8250_tx_byte(UART0_IO_BASE, byte); uart8250_tx_byte(TTYS0_BASE, byte);
} }
int do_printk(int msg_level, const char *fmt, ...) int do_printk(int msg_level, const char *fmt, ...)