mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
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:
parent
395bfb562f
commit
b83f5bbdcb
2 changed files with 2 additions and 3 deletions
|
@ -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');
|
||||
|
|
|
@ -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, ...);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue