Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/usb Fix function name in DPRINTF
details: https://anonhg.NetBSD.org/src/rev/0f315ace7894
branches: trunk
changeset: 782692:0f315ace7894
user: skrll <skrll%NetBSD.org@localhost>
date: Wed Nov 14 13:53:23 2012 +0000
description:
Fix function name in DPRINTF
diffstat:
sys/dev/usb/uhub.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 08d254f7fb38 -r 0f315ace7894 sys/dev/usb/uhub.c
--- a/sys/dev/usb/uhub.c Wed Nov 14 13:36:02 2012 +0000
+++ b/sys/dev/usb/uhub.c Wed Nov 14 13:53:23 2012 +0000
@@ -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 @@
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) {
Home |
Main Index |
Thread Index |
Old Index