Patrick Rudolph has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/81590?usp=email )
Change subject: drivers/tpm: Make it compile again ......................................................................
drivers/tpm: Make it compile again
Replace BIOS_WARN with BIOS_WARNING.
Change-Id: Id23cda2f5403effd2a4bda3852f0f300d0e62cdf Signed-off-by: Patrick Rudolph patrick.rudolph@9elements.com --- M src/drivers/tpm/ppi.c 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/90/81590/1
diff --git a/src/drivers/tpm/ppi.c b/src/drivers/tpm/ppi.c index d63b8f8..2ce1d07 100644 --- a/src/drivers/tpm/ppi.c +++ b/src/drivers/tpm/ppi.c @@ -571,7 +571,7 @@
enum tpm_family family = tlcl_get_family(); if (family == TPM_UNKNOWN) { - printk(BIOS_WARN, "PPI: %s: aborting, because no TPM detected\n", __func__); + printk(BIOS_WARNING, "PPI: %s: aborting, because no TPM detected\n", __func__); return; }
@@ -726,7 +726,7 @@
family = tlcl_get_family(); if (family == TPM_UNKNOWN) { - printk(BIOS_WARN, "PPI: %s: aborting, because no TPM detected\n", __func__); + printk(BIOS_WARNING, "PPI: %s: aborting, because no TPM detected\n", __func__); return; }