aboutsummaryrefslogtreecommitdiff
path: root/src/arch
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/armv7/early_console.c3
-rw-r--r--src/arch/x86/lib/romstage_console.c3
2 files changed, 0 insertions, 6 deletions
diff --git a/src/arch/armv7/early_console.c b/src/arch/armv7/early_console.c
index a85f554310..599cbc76e3 100644
--- a/src/arch/armv7/early_console.c
+++ b/src/arch/armv7/early_console.c
@@ -24,9 +24,6 @@
/* FIXME: need to make console driver more generic */
void console_tx_byte(unsigned char byte)
{
- if (byte == '\n')
- console_tx_byte('\r');
-
#if CONFIG_CONSOLE_SERIAL
uart_tx_byte(byte);
#endif
diff --git a/src/arch/x86/lib/romstage_console.c b/src/arch/x86/lib/romstage_console.c
index c80cf8c3ff..4971f018c0 100644
--- a/src/arch/x86/lib/romstage_console.c
+++ b/src/arch/x86/lib/romstage_console.c
@@ -26,9 +26,6 @@
void console_tx_byte(unsigned char byte)
{
- if (byte == '\n')
- console_tx_byte('\r');
-
#if CONFIG_CONSOLE_SERIAL
uart_tx_byte(byte);
#endif