summaryrefslogtreecommitdiff
path: root/sys/dev/usb/usbdi.c
diff options
context:
space:
mode:
authorJosef Karthauser <joe@FreeBSD.org>2002-04-07 11:19:05 +0000
committerJosef Karthauser <joe@FreeBSD.org>2002-04-07 11:19:05 +0000
commit05f37aafc42d97e224fefda1d2d0228727d687d2 (patch)
treefd11c7dbe4a850f6f5257ae9c428133c6c566e62 /sys/dev/usb/usbdi.c
parent3b0f6960df878807298d157d6c937d3b5e4b13ac (diff)
Notes
Diffstat (limited to 'sys/dev/usb/usbdi.c')
-rw-r--r--sys/dev/usb/usbdi.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/usb/usbdi.c b/sys/dev/usb/usbdi.c
index 374cbb4a0e99..966b8cec4b1c 100644
--- a/sys/dev/usb/usbdi.c
+++ b/sys/dev/usb/usbdi.c
@@ -126,8 +126,9 @@ usbd_dump_device(struct usbd_device *dev)
if (dev == NULL)
return;
printf(" bus=%p default_pipe=%p\n", dev->bus, dev->default_pipe);
- printf(" address=%d config=%d depth=%d lowspeed=%d self_powered=%d power=%d langid=%d\n",
- dev->address, dev->config, dev->depth, dev->lowspeed,
+ printf(" address=%d config=%d depth=%d speed=%d self_powered=%d "
+ "power=%d langid=%d\n",
+ dev->address, dev->config, dev->depth, dev->speed,
dev->self_powered, dev->power, dev->langid);
}