Weird. Make header match c file.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>



git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@219 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
Stefan Reinauer 2007-03-08 21:28:29 +00:00
parent 395bfb562f
commit b83f5bbdcb
2 changed files with 2 additions and 3 deletions

View file

@ -10,12 +10,13 @@
int vtxprintf(void (*)(unsigned char, void *arg),
void *arg, const char *, va_list);
static int console_loglevel(void)
{
return CONFIG_DEFAULT_CONSOLE_LOGLEVEL;
}
void console_tx_byte(unsigned char byte, void *ignored)
void console_tx_byte(unsigned char byte)
{
if (byte == '\n') {
uart8250_tx_byte(TTYSx_BASE, '\r');

View file

@ -42,8 +42,6 @@ struct console_driver {
extern struct console_driver console_drivers[];
extern struct console_driver econsole_drivers[];
extern int console_loglevel;
//
int printk(int msg_level, const char *fmt, ...);