summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorskrll <skrll@NetBSD.org>2013-03-22 13:28:11 +0000
committerskrll <skrll@NetBSD.org>2013-03-22 13:28:11 +0000
commit20cc1bc2c2f98db37d15404e5fb556ea1492ce87 (patch)
tree9cded501c5409e219873113412db2a36cbf9d197 /sys/dev
parent7806ef3ef7f90b08498a7c1c69d2cad28673ce26 (diff)
Fix typo in function name in DIAGNOSTIC prinf by using __func__
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/usb/ohci.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/ohci.c b/sys/dev/usb/ohci.c
index f962c052a1b..5e467d116cd 100644
--- a/sys/dev/usb/ohci.c
+++ b/sys/dev/usb/ohci.c
@@ -1,4 +1,4 @@
-/* $NetBSD: ohci.c,v 1.234 2013/03/22 13:20:12 skrll Exp $ */
+/* $NetBSD: ohci.c,v 1.235 2013/03/22 13:28:11 skrll Exp $ */
/*
* Copyright (c) 1998, 2004, 2005, 2012 The NetBSD Foundation, Inc.
@@ -41,7 +41,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ohci.c,v 1.234 2013/03/22 13:20:12 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ohci.c,v 1.235 2013/03/22 13:28:11 skrll Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -2316,7 +2316,7 @@ ohci_abort_xfer(usbd_xfer_handle xfer, usbd_status status)
DPRINTFN(2, ("ohci_abort_xfer: already aborting\n"));
#ifdef DIAGNOSTIC
if (status == USBD_TIMEOUT)
- printf("0hci_abort_xfer: TIMEOUT while aborting\n");
+ printf("%s: TIMEOUT while aborting\n", __func__);
#endif
/* Override the status which might be USBD_TIMEOUT. */
xfer->status = status;