aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/spi
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2021-01-16 17:30:33 +0100
committerPatrick Georgi <pgeorgi@google.com>2021-01-19 08:58:04 +0000
commitd0a62c667da913e84b092fa5174b90687e739863 (patch)
tree118e08f59d5b3d44735c26280cf014dbc3102b59 /src/drivers/spi
parent52016659a45526bb35780dca4f5b26d10c762662 (diff)
drivers/spi/tpm/tis.c: Use __func__
Change-Id: I2941d4480a7c88b6c020a9da584135a0030fccfe Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/49551 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Christian Walter <christian.walter@9elements.com>
Diffstat (limited to 'src/drivers/spi')
-rw-r--r--src/drivers/spi/tpm/tis.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/spi/tpm/tis.c b/src/drivers/spi/tpm/tis.c
index 2554cf717c..6465b40a0a 100644
--- a/src/drivers/spi/tpm/tis.c
+++ b/src/drivers/spi/tpm/tis.c
@@ -31,7 +31,7 @@ static const char *tis_get_dev_name(struct tpm2_info *info)
int tis_open(void)
{
if (tpm_is_open) {
- printk(BIOS_ERR, "tis_open() called twice.\n");
+ printk(BIOS_ERR, "%s() called twice.\n", __func__);
return -1;
}
return 0;