aboutsummaryrefslogtreecommitdiff
path: root/src/arch/i386/lib/printk_init.c
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2010-03-30 22:08:48 +0000
committerStefan Reinauer <stepan@openbios.org>2010-03-30 22:08:48 +0000
commitb01fe696d495cfd15f861d270c88547aabf1f6c4 (patch)
treebbc9325d3b240efed407940c7fb16cafd57929b1 /src/arch/i386/lib/printk_init.c
parent23a3e7940544091bcc2df6421b8fea5aad8501d7 (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
Diffstat (limited to 'src/arch/i386/lib/printk_init.c')
-rw-r--r--src/arch/i386/lib/printk_init.c2
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');