[coreboot-gerrit] Patch set updated for coreboot: soc/skylake: Use CONFIG_UART_DEBUG to resolve build error

Boon Tiong Teo (boon.tiong.teo@intel.com) gerrit at coreboot.org
Wed Nov 23 07:54:48 CET 2016


Boon Tiong Teo (boon.tiong.teo at intel.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/17349

-gerrit

commit 9feeb9c5a40ff48542a387b567c55e3e750b8abc
Author: Teo Boon Tiong <boon.tiong.teo at intel.com>
Date:   Thu Nov 10 21:06:51 2016 +0800

    soc/skylake: Use CONFIG_UART_DEBUG to resolve build error
    
    When using CONFIG_BOOTBLOCK_CONSOLE, it will causing build error if platform
    is using SIO config
    
    Change-Id: Id422a55a68d64a06fc874bddca46b0ef5be6d596
    Signed-off-by: Teo Boon Tiong <boon.tiong.teo at intel.com>
---
 src/soc/intel/skylake/bootblock/bootblock.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/soc/intel/skylake/bootblock/bootblock.c b/src/soc/intel/skylake/bootblock/bootblock.c
index 892ac80..e11106e 100644
--- a/src/soc/intel/skylake/bootblock/bootblock.c
+++ b/src/soc/intel/skylake/bootblock/bootblock.c
@@ -27,8 +27,7 @@ void bootblock_soc_early_init(void)
 	bootblock_systemagent_early_init();
 	bootblock_pch_early_init();
 	bootblock_cpu_init();
-	pch_early_iorange_init();
-	if (IS_ENABLED(CONFIG_BOOTBLOCK_CONSOLE))
+	if (IS_ENABLED(CONFIG_UART_DEBUG))
 		pch_uart_init();
 }
 



More information about the coreboot-gerrit mailing list