diff options
author | hselasky <hselasky@FreeBSD.org> | 2010-10-14 21:18:18 +0000 |
---|---|---|
committer | hselasky <hselasky@FreeBSD.org> | 2010-10-14 21:18:18 +0000 |
commit | 752cadb5d313be575e02df981d760e7cba6bbd33 (patch) | |
tree | 22f179c7def0c9bd0e10b9363f7b1e62f5c53d7c | |
parent | 7c02a978597178af989c86634b8da38c5324e9ad (diff) | |
download | FreeBSD-src-752cadb5d313be575e02df981d760e7cba6bbd33.zip FreeBSD-src-752cadb5d313be575e02df981d760e7cba6bbd33.tar.gz |
Correct EHCI root HUB interface descriptor.
Approved by: thompsa (mentor)
-rw-r--r-- | sys/dev/usb/controller/ehci.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/usb/controller/ehci.c b/sys/dev/usb/controller/ehci.c index b0560f3..e79a284 100644 --- a/sys/dev/usb/controller/ehci.c +++ b/sys/dev/usb/controller/ehci.c @@ -3063,8 +3063,7 @@ static const struct ehci_config_desc ehci_confd = { .bNumEndpoints = 1, .bInterfaceClass = UICLASS_HUB, .bInterfaceSubClass = UISUBCLASS_HUB, - .bInterfaceProtocol = UIPROTO_HSHUBSTT, - 0 + .bInterfaceProtocol = 0, }, .endpd = { .bLength = sizeof(struct usb_endpoint_descriptor), |