[coreboot-gerrit] New patch to review 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:40 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 a29c81bcbad332672f447e3bef32505785061fab
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 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/soc/intel/skylake/bootblock/bootblock.c b/src/soc/intel/skylake/bootblock/bootblock.c
index 892ac80..f416751 100644
--- a/src/soc/intel/skylake/bootblock/bootblock.c
+++ b/src/soc/intel/skylake/bootblock/bootblock.c
@@ -28,7 +28,7 @@ void bootblock_soc_early_init(void)
 	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