Module Name: src
Committed By: skrll
Date: Wed Nov 14 13:53:23 UTC 2012
Modified Files:
src/sys/dev/usb: uhub.c
Log Message:
Fix function name in DPRINTF
To generate a diff of this commit:
cvs rdiff -u -r1.118 -r1.119 src/sys/dev/usb/uhub.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/usb/uhub.c
diff -u src/sys/dev/usb/uhub.c:1.118 src/sys/dev/usb/uhub.c:1.119
--- src/sys/dev/usb/uhub.c:1.118 Sun Sep 9 20:23:38 2012
+++ src/sys/dev/usb/uhub.c Wed Nov 14 13:53:23 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: uhub.c,v 1.118 2012/09/09 20:23:38 gsutre Exp $ */
+/* $NetBSD: uhub.c,v 1.119 2012/11/14 13:53:23 skrll Exp $ */
/* $FreeBSD: src/sys/dev/usb/uhub.c,v 1.18 1999/11/17 22:33:43 n_hibma Exp $ */
/*
@@ -36,7 +36,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uhub.c,v 1.118 2012/09/09 20:23:38 gsutre Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uhub.c,v 1.119 2012/11/14 13:53:23 skrll Exp $");
#include "opt_usb.h"
@@ -189,7 +189,7 @@ uhub_attach(device_t parent, device_t se
USETW2(req.wValue, UDESC_HUB, 0);
USETW(req.wIndex, 0);
USETW(req.wLength, USB_HUB_DESCRIPTOR_SIZE);
- DPRINTFN(1,("usb_init_hub: getting hub descriptor\n"));
+ DPRINTFN(1,("%s: getting hub descriptor\n", __func__));
err = usbd_do_request(dev, &req, &hubdesc);
nports = hubdesc.bNbrPorts;
if (!err && nports > 7) {