summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2020-03-03 10:11:15 +0100
committerPatrick Georgi <pgeorgi@google.com>2020-03-07 20:47:50 +0000
commit7fc6847dd66b5a78feae51169f3fe3fd8ae1c673 (patch)
tree1a451a2b62296069e30184776c2dc7c1354765be /src
parent97fe371b9f1f1050ebc2edf87508ced79aa87b46 (diff)
downloadcoreboot-7fc6847dd66b5a78feae51169f3fe3fd8ae1c673.tar.gz
coreboot-7fc6847dd66b5a78feae51169f3fe3fd8ae1c673.tar.bz2
coreboot-7fc6847dd66b5a78feae51169f3fe3fd8ae1c673.zip
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>
Diffstat (limited to 'src')
-rw-r--r--src/drivers/usb/ehci_debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/usb/ehci_debug.c b/src/drivers/usb/ehci_debug.c
index 97b39f46a0b9..364f8c7772ca 100644
--- a/src/drivers/usb/ehci_debug.c
+++ b/src/drivers/usb/ehci_debug.c
@@ -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;
}