diff options
author | joe <joe@FreeBSD.org> | 2002-04-07 11:19:05 +0000 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2002-04-07 11:19:05 +0000 |
commit | ca6fcfb6a4cb74d1d6b9ad773fd2f0af9a955eb7 (patch) | |
tree | fd11c7dbe4a850f6f5257ae9c428133c6c566e62 /sys/dev/usb/ohci.c | |
parent | eee9c9d74ae2a64928350b17c67dae5749a632fa (diff) | |
download | FreeBSD-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/ohci.c')
-rw-r--r-- | sys/dev/usb/ohci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/ohci.c b/sys/dev/usb/ohci.c index 2268480..d8b772d 100644 --- a/sys/dev/usb/ohci.c +++ b/sys/dev/usb/ohci.c @@ -2156,7 +2156,7 @@ Static usb_device_descriptor_t ohci_devd = { {0x00, 0x01}, /* USB version */ UDCLASS_HUB, /* class */ UDSUBCLASS_HUB, /* subclass */ - 0, /* protocol */ + UDPROTO_FSHUB, /* protocol */ 64, /* max packet */ {0},{0},{0x00,0x01}, /* device id */ 1,2,0, /* string indicies */ @@ -2184,7 +2184,7 @@ Static usb_interface_descriptor_t ohci_ifcd = { 1, UICLASS_HUB, UISUBCLASS_HUB, - 0, + UIPROTO_FSHUB, 0 }; |