summaryrefslogtreecommitdiff
path: root/sys/dev/usb
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/usb')
-rw-r--r--sys/dev/usb/uhub.c4
-rw-r--r--sys/dev/usb/usb_subr.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/usb/uhub.c b/sys/dev/usb/uhub.c
index 387df78c059..035e20c94d1 100644
--- a/sys/dev/usb/uhub.c
+++ b/sys/dev/usb/uhub.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uhub.c,v 1.33 2006/06/23 06:27:11 miod Exp $ */
+/* $OpenBSD: uhub.c,v 1.34 2006/06/26 19:12:38 mjc Exp $ */
/* $NetBSD: uhub.c,v 1.64 2003/02/08 03:32:51 ichiro Exp $ */
/* $FreeBSD: src/sys/dev/usb/uhub.c,v 1.18 1999/11/17 22:33:43 n_hibma Exp $ */
@@ -502,7 +502,7 @@ uhub_explore(usbd_device_handle dev)
dev->depth + 1, speed, port, up);
/* XXX retry a few times? */
if (err) {
- DPRINTFN(-1,("uhub_explore: usb_new_device failed, "
+ DPRINTFN(-1,("uhub_explore: usbd_new_device failed, "
"error=%s\n", usbd_errstr(err)));
/* Avoid addressing problems by disabling. */
/* usbd_reset_port(dev, port, &up->status); */
diff --git a/sys/dev/usb/usb_subr.c b/sys/dev/usb/usb_subr.c
index 7e4da9b9017..6a813a9a9be 100644
--- a/sys/dev/usb/usb_subr.c
+++ b/sys/dev/usb/usb_subr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: usb_subr.c,v 1.43 2006/05/31 06:18:09 pascoe Exp $ */
+/* $OpenBSD: usb_subr.c,v 1.44 2006/06/26 19:12:38 mjc Exp $ */
/* $NetBSD: usb_subr.c,v 1.103 2003/01/10 11:19:13 augustss Exp $ */
/* $FreeBSD: src/sys/dev/usb/usb_subr.c,v 1.18 1999/11/17 22:33:47 n_hibma Exp $ */
@@ -1159,7 +1159,7 @@ usbd_new_device(device_ptr_t parent, usbd_bus_handle bus, int depth,
DPRINTFN(5,("usbd_new_device: setting device address=%d\n", addr));
err = usbd_set_address(dev, addr);
if (err) {
- DPRINTFN(-1,("usb_new_device: set address %d failed\n", addr));
+ DPRINTFN(-1,("usbd_new_device: set address %d failed\n", addr));
err = USBD_SET_ADDR_FAILED;
usbd_remove_device(dev, up);
return (err);