From 9ed8a82d265fde1df1a01be7568d8f0979020108 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Tue, 3 Dec 2013 21:25:35 -0800 Subject: serial: Separate the serial hardware init and the serial console init. You might want to use the serial hardware for something other than a console, or you might want to intercede in the serial stream to wrap it in another protocol. This is what you'd do to send output to GDB while using it to debug the payload. Change-Id: I2218c0dbb988dacb64e5bdaf5d92138828eff8b6 Signed-off-by: Gabe Black Reviewed-on: https://chromium-review.googlesource.com/179559 Reviewed-by: Ronald Minnich Reviewed-by: David Hendricks Commit-Queue: Gabe Black Tested-by: Gabe Black (cherry picked from commit da9ab46d974745125fe7d8b29ce43336c3586cd5) Signed-off-by: Isaac Christensen Reviewed-on: http://review.coreboot.org/6547 Tested-by: build bot (Jenkins) --- payloads/libpayload/libc/console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'payloads/libpayload/libc/console.c') diff --git a/payloads/libpayload/libc/console.c b/payloads/libpayload/libc/console.c index a362481b15..59d5bccb48 100644 --- a/payloads/libpayload/libc/console.c +++ b/payloads/libpayload/libc/console.c @@ -53,7 +53,7 @@ void console_init(void) video_console_init(); #endif #ifdef CONFIG_LP_SERIAL_CONSOLE - serial_init(); + serial_console_init(); #endif #ifdef CONFIG_LP_PC_KEYBOARD keyboard_init(); -- cgit v1.2.3