diff options
author | n_hibma <n_hibma@FreeBSD.org> | 1999-03-22 19:58:59 +0000 |
---|---|---|
committer | n_hibma <n_hibma@FreeBSD.org> | 1999-03-22 19:58:59 +0000 |
commit | 10c53b0d51537e41fb1f5f045618d4502c703319 (patch) | |
tree | e9a4c2406696b9cb4fbcf069fa755ca925d5bd2d /sys/dev/usb/uhub.c | |
parent | f4b0f1726a869e524a0d4babca61a63b27e9b9ab (diff) | |
download | FreeBSD-src-10c53b0d51537e41fb1f5f045618d4502c703319.zip FreeBSD-src-10c53b0d51537e41fb1f5f045618d4502c703319.tar.gz |
Cosmetical changes.
Diffstat (limited to 'sys/dev/usb/uhub.c')
-rw-r--r-- | sys/dev/usb/uhub.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/uhub.c b/sys/dev/usb/uhub.c index 5749f77..7913976 100644 --- a/sys/dev/usb/uhub.c +++ b/sys/dev/usb/uhub.c @@ -340,9 +340,9 @@ uhub_explore(dev) up = &dev->hub->ports[port-1]; r = usbd_get_port_status(dev, port, &up->status); if (r != USBD_NORMAL_COMPLETION) { - DPRINTF(("uhub_explore: get port status failed, " + DPRINTF(("uhub_explore: get port status failed, on port %d " "error=%d(%s)\n", - r, usbd_error_strs[r])); + port, r, usbd_error_strs[r])); continue; } status = UGETW(up->status.wPortStatus); |