drivers/usb: Use 'print("%s...", __func__)'

Change-Id: Id90496ba54d861157343302c2600adf3b4ccd811
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/39230
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Elyes HAOUAS 2020-03-03 10:11:15 +01:00 committed by Patrick Georgi
parent 97fe371b9f
commit 7fc6847dd6
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ static int dbgp_wait_until_complete(struct ehci_dbg_port *ehci_debug)
} while (++loop < DBGP_MICROFRAME_TIMEOUT_LOOPS);
if (! (ctrl & DBGP_DONE)) {
dprintk(BIOS_ERR, "dbgp_wait_until_complete: retry timeout.\n");
dprintk(BIOS_ERR, "%s: retry timeout.\n", __func__);
return -DBGP_ERR_SIGNAL;
}