diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2022-09-12 10:16:19 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-09-15 13:01:59 +0000 |
commit | a6b41f2fd05c61ea74bea4a40d02250e9b37bee0 (patch) | |
tree | 7ce3e420cefc018b2fc4b6c89237b9337fdb31ad | |
parent | e1465e21570dc4344c25371fc213dcd01a807b25 (diff) |
mb/google/mistral/verstage.c: Change loglevel prefix
BIOS_ERR is inappropriate since the message is informational.
Use BIOS_INFO instead.
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Change-Id: I91be3f47ae93c8262e430a06cacec3d2c29ebd58
Reviewed-on: https://review.coreboot.org/c/coreboot/+/67539
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Julius Werner <jwerner@chromium.org>
-rw-r--r-- | src/mainboard/google/mistral/verstage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/mistral/verstage.c b/src/mainboard/google/mistral/verstage.c index ba6c1ff267..520e933aee 100644 --- a/src/mainboard/google/mistral/verstage.c +++ b/src/mainboard/google/mistral/verstage.c @@ -9,7 +9,7 @@ void verstage_mainboard_init(void) { struct spi_slave spi; - printk(BIOS_ERR, "Trying to initialize TPM SPI bus\n"); + printk(BIOS_INFO, "Trying to initialize TPM SPI bus\n"); if (spi_setup_slave(CONFIG_DRIVER_TPM_SPI_BUS, CONFIG_DRIVER_TPM_SPI_CHIP, &spi)) { printk(BIOS_ERR, "Failed to setup TPM SPI slave\n"); |