diff options
author | hselasky <hselasky@FreeBSD.org> | 2010-10-13 20:37:19 +0000 |
---|---|---|
committer | hselasky <hselasky@FreeBSD.org> | 2010-10-13 20:37:19 +0000 |
commit | 508f4d74572e4717f91717ba1ad220da41303af6 (patch) | |
tree | c0eea92a089dcb1a1218dbfb6305e17b72d4895c /sys/dev/usb/controller/avr32dci.c | |
parent | 2ea7523b1b43740b19aa64e670034320df31618b (diff) | |
download | FreeBSD-src-508f4d74572e4717f91717ba1ad220da41303af6.zip FreeBSD-src-508f4d74572e4717f91717ba1ad220da41303af6.tar.gz |
Correct some root HUB descriptor fields in multiple controller drivers.
Remove an unused structure.
Approved by: thompsa (mentor)
Diffstat (limited to 'sys/dev/usb/controller/avr32dci.c')
-rw-r--r-- | sys/dev/usb/controller/avr32dci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/controller/avr32dci.c b/sys/dev/usb/controller/avr32dci.c index 8abe46c..6c171ba 100644 --- a/sys/dev/usb/controller/avr32dci.c +++ b/sys/dev/usb/controller/avr32dci.c @@ -1480,7 +1480,7 @@ static const struct avr32dci_config_desc avr32dci_confd = { .bNumEndpoints = 1, .bInterfaceClass = UICLASS_HUB, .bInterfaceSubClass = UISUBCLASS_HUB, - .bInterfaceProtocol = UIPROTO_HSHUBSTT, + .bInterfaceProtocol = 0, }, .endpd = { .bLength = sizeof(struct usb_endpoint_descriptor), |