diff --git a/sys/dev/usb/uhub.c b/sys/dev/usb/uhub.c index bc61acb8e94a..fec2e1e4d786 100644 --- a/sys/dev/usb/uhub.c +++ b/sys/dev/usb/uhub.c @@ -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 -__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 self, void *aux) 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) {