diff options
-rw-r--r-- | src/drivers/tpm/ppi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/drivers/tpm/ppi.c b/src/drivers/tpm/ppi.c index d63b8f811b..2ce1d07808 100644 --- a/src/drivers/tpm/ppi.c +++ b/src/drivers/tpm/ppi.c @@ -571,7 +571,7 @@ void tpm_ppi_acpi_fill_ssdt(const struct device *dev) 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 @@ void lb_tpm_ppi(struct lb_header *header) 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; } |