drivers/i2c/tpm/cr50.c: Use __func__
Change-Id: If2751f3672072b7fa421ae33dc6e1490fdf35247 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/49547 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Christian Walter <christian.walter@9elements.com>
This commit is contained in:
parent
b45219e720
commit
52016659a4
|
@ -49,7 +49,8 @@ __weak int tis_plat_irq_status(void)
|
|||
static int warning_displayed;
|
||||
|
||||
if (!warning_displayed) {
|
||||
printk(BIOS_WARNING, "WARNING: tis_plat_irq_status() not implemented, wasting 20ms to wait on Cr50!\n");
|
||||
printk(BIOS_WARNING, "WARNING: %s() not implemented, wasting 20ms to wait on"
|
||||
" Cr50!\n", __func__);
|
||||
warning_displayed = 1;
|
||||
}
|
||||
mdelay(CR50_TIMEOUT_NOIRQ_MS);
|
||||
|
|
Loading…
Reference in New Issue