diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2010-03-30 22:08:48 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-03-30 22:08:48 +0000 |
commit | b01fe696d495cfd15f861d270c88547aabf1f6c4 (patch) | |
tree | bbc9325d3b240efed407940c7fb16cafd57929b1 | |
parent | 23a3e7940544091bcc2df6421b8fea5aad8501d7 (diff) |
that version of console_tx_byte is private.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5337 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | src/arch/i386/lib/printk_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/i386/lib/printk_init.c b/src/arch/i386/lib/printk_init.c index aa9d5b5a5a..f3add87111 100644 --- a/src/arch/i386/lib/printk_init.c +++ b/src/arch/i386/lib/printk_init.c @@ -32,7 +32,7 @@ int console_loglevel = CONFIG_DEFAULT_CONSOLE_LOGLEVEL; #define console_loglevel CONFIG_DEFAULT_CONSOLE_LOGLEVEL #endif -void console_tx_byte(unsigned char byte) +static void console_tx_byte(unsigned char byte) { if (byte == '\n') uart8250_tx_byte(CONFIG_TTYS0_BASE, '\r'); |