console: Move newline translation outside console_tx_byte

This gives us completely transparent low-level function to transmit
data.

Change-Id: I706791ff43d80a36a7252a4da0e6f3af92520db7
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: http://review.coreboot.org/5336
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
This commit is contained in:
Kyösti Mälkki
2014-02-04 19:03:57 +02:00
committed by Patrick Georgi
parent b3356bbff4
commit 657e0be464
9 changed files with 22 additions and 29 deletions

View File

@ -48,7 +48,7 @@ void console_tx_flush(void)
}
}
static void __console_tx_byte(unsigned char byte)
void console_tx_byte(unsigned char byte)
{
struct console_driver *driver;
for(driver = console_drivers; driver < econsole_drivers; driver++) {
@ -56,13 +56,6 @@ static void __console_tx_byte(unsigned char byte)
}
}
void console_tx_byte(unsigned char byte)
{
if (byte == '\n')
__console_tx_byte('\r');
__console_tx_byte(byte);
}
unsigned char console_rx_byte(void)
{
struct console_driver *driver;