[coreboot-gerrit] New patch to review for coreboot: 01a6fe1 console: Clean up ARM CONFIG_CONSOLE_SERIAL

Marc Jones (marc.jones@se-eng.com) gerrit at coreboot.org
Mon Feb 23 07:11:16 CET 2015


Marc Jones (marc.jones at se-eng.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/8516

-gerrit

commit 01a6fe1828bdd08e128cf6292672edff6197ab04
Author: Marc Jones <marc.jones at se-eng.com>
Date:   Sun Feb 22 23:07:48 2015 -0700

    console: Clean up ARM CONFIG_CONSOLE_SERIAL
    
    CONFIG_CONSOLE_SERIAL_UART has been updated to
    CONFIG_CONSOLE_SERIAL. There were a couple of instances of it
    that were missed in previous merges from the chromium tree.
    
    Change-Id: Ife6e6861d210126b2b9ba5eee9ff72e8a447c47f
    Signed-off-by: Marc Jones <marc.jones at se-eng.com>
---
 src/arch/arm64/early_console.c       | 2 +-
 src/soc/nvidia/tegra124/Makefile.inc | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/arch/arm64/early_console.c b/src/arch/arm64/early_console.c
index aa287a3..8901f5d 100644
--- a/src/arch/arm64/early_console.c
+++ b/src/arch/arm64/early_console.c
@@ -32,7 +32,7 @@ void console_tx_byte(unsigned char byte)
 			CONFIG_OXFORD_OXPCIE_BASE_ADDRESS + 0x1000, byte);
 	}
 #endif
-#if CONFIG_CONSOLE_SERIAL_UART
+#if CONFIG_CONSOLE_SERIAL
 	uart_tx_byte(byte);
 #endif
 #if CONFIG_USBDEBUG
diff --git a/src/soc/nvidia/tegra124/Makefile.inc b/src/soc/nvidia/tegra124/Makefile.inc
index 4b0ec96..7dee55b 100644
--- a/src/soc/nvidia/tegra124/Makefile.inc
+++ b/src/soc/nvidia/tegra124/Makefile.inc
@@ -26,7 +26,7 @@ verstage-y += dma.c
 verstage-y += monotonic_timer.c
 verstage-y += spi.c
 verstage-y += timer.c
-verstage-$(CONFIG_CONSOLE_SERIAL_UART) += uart.c
+verstage-$(CONFIG_CONSOLE_SERIAL) += uart.c
 verstage-y += ../tegra/gpio.c
 verstage-y += ../tegra/pinmux.c
 



More information about the coreboot-gerrit mailing list