Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/58077 )
Change subject: mb/google/guybrush: drop printk in bootblock_mainboard_early_init ......................................................................
mb/google/guybrush: drop printk in bootblock_mainboard_early_init
bootblock_mainboard_early_init gets called before console_init.
Signed-off-by: Felix Held felix-coreboot@felixheld.de Change-Id: Ia5a1da336e8dfc451177a5319a656c407c9fef7d --- M src/mainboard/google/guybrush/bootblock.c 1 file changed, 2 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/77/58077/1
diff --git a/src/mainboard/google/guybrush/bootblock.c b/src/mainboard/google/guybrush/bootblock.c index 9c9fce7..040bc52 100644 --- a/src/mainboard/google/guybrush/bootblock.c +++ b/src/mainboard/google/guybrush/bootblock.c @@ -55,7 +55,8 @@ * the Fibocom 350 PCIe init */ stopwatch_init_usecs_expire(&pcie_init_timeout_sw, FC350_PCIE_INIT_DELAY_US); - printk(BIOS_DEBUG, "Bootblock configure eSPI\n"); + + /* Early eSPI interface configuration */
dword = pm_read32(PM_SPI_PAD_PU_PD); dword |= PM_ESPI_CS_USE_DATA2;