diff options
author | hselasky <hselasky@FreeBSD.org> | 2011-01-13 20:03:55 +0000 |
---|---|---|
committer | hselasky <hselasky@FreeBSD.org> | 2011-01-13 20:03:55 +0000 |
commit | 27096771668041179314af70a766a06feacf4578 (patch) | |
tree | 658e2c8ac67e3940f447d984075d5b94d55e7db1 /sys/dev/usb/controller/xhci.h | |
parent | 77231fa288f87daa425c59871b9c9fa22ffbf24b (diff) | |
download | FreeBSD-src-27096771668041179314af70a766a06feacf4578.zip FreeBSD-src-27096771668041179314af70a766a06feacf4578.tar.gz |
- Add support for 64-byte contexts to XHCI driver.
- Remove some dead code.
- Fixed one instance of missing endian conversion.
Approved by: thompsa (mentor)
Diffstat (limited to 'sys/dev/usb/controller/xhci.h')
-rw-r--r-- | sys/dev/usb/controller/xhci.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/dev/usb/controller/xhci.h b/sys/dev/usb/controller/xhci.h index 3272890..81f392a 100644 --- a/sys/dev/usb/controller/xhci.h +++ b/sys/dev/usb/controller/xhci.h @@ -477,6 +477,9 @@ struct xhci_softc { uint8_t sc_conf; uint8_t sc_hub_idata[2]; + /* size of context */ + uint8_t sc_ctx_is_64_byte; + /* vendor string for root HUB */ char sc_vendor[16]; }; |