diff options
author | hselasky <hselasky@FreeBSD.org> | 2011-11-09 18:11:29 +0000 |
---|---|---|
committer | hselasky <hselasky@FreeBSD.org> | 2011-11-09 18:11:29 +0000 |
commit | 7001293a24141bbdef027b5a0575c031ef56cb82 (patch) | |
tree | b219b9c4b71df50318a978c12583574e4a9a190d /sys/dev/usb/controller/xhci.c | |
parent | 0070160ceaa480667098d09d55d04e0e11d52c59 (diff) | |
download | FreeBSD-src-7001293a24141bbdef027b5a0575c031ef56cb82.zip FreeBSD-src-7001293a24141bbdef027b5a0575c031ef56cb82.tar.gz |
Fix size of USB 3.0 descriptor field.
MFC after: 3 days
Diffstat (limited to 'sys/dev/usb/controller/xhci.c')
-rw-r--r-- | sys/dev/usb/controller/xhci.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/controller/xhci.c b/sys/dev/usb/controller/xhci.c index e5ba7fd..4d20770 100644 --- a/sys/dev/usb/controller/xhci.c +++ b/sys/dev/usb/controller/xhci.c @@ -2841,7 +2841,8 @@ struct xhci_bos_desc xhci_bosd = { HSETW(.wSpeedsSupported, 0x000C), .bFunctionalitySupport = 8, .bU1DevExitLat = 255, /* dummy - not used */ - .bU2DevExitLat = 255, /* dummy - not used */ + .wU2DevExitLat[0] = 0x00, + .wU2DevExitLat[1] = 0x08, }, .cidd = { .bLength = sizeof(xhci_bosd.cidd), |