summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/usbdi.c
diff options
context:
space:
mode:
authorjoe <joe@FreeBSD.org>2002-04-07 11:19:05 +0000
committerjoe <joe@FreeBSD.org>2002-04-07 11:19:05 +0000
commitca6fcfb6a4cb74d1d6b9ad773fd2f0af9a955eb7 (patch)
treefd11c7dbe4a850f6f5257ae9c428133c6c566e62 /sys/dev/usb/usbdi.c
parenteee9c9d74ae2a64928350b17c67dae5749a632fa (diff)
downloadFreeBSD-src-ca6fcfb6a4cb74d1d6b9ad773fd2f0af9a955eb7.zip
FreeBSD-src-ca6fcfb6a4cb74d1d6b9ad773fd2f0af9a955eb7.tar.gz
MFNetBSD: ohci.c (1.109), uhci.c (1.144), uhub.c (1.56), usb.c (1.57),
usbdi.c (1.86), usbdivar.h (1.66) [Some partial, because most of this was merged in a while ago] date: 2001/11/20 13:48:03; author: augustss; Keep track of device speed for USB 2.0.
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 374cbb4..966b8ce 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);
}
OpenPOWER on IntegriCloud