diff options
author | hselasky <hselasky@FreeBSD.org> | 2013-06-02 10:32:57 +0000 |
---|---|---|
committer | hselasky <hselasky@FreeBSD.org> | 2013-06-02 10:32:57 +0000 |
commit | 7b42f3f2da07e984295aae664059dc898d673200 (patch) | |
tree | a5e3035ef6cddc3a7b3ac7e69a55528bbc103c6f /sys/dev/usb/controller/xhci.h | |
parent | f4ae49737bd2a06b8989ea5056b78fe9dfb67553 (diff) | |
download | FreeBSD-src-7b42f3f2da07e984295aae664059dc898d673200.zip FreeBSD-src-7b42f3f2da07e984295aae664059dc898d673200.tar.gz |
Correct some XHCI streams mode transfer handling found by code inspection.
The existing streams mode support is not working and has not been tested
due to lack of hardware which supports the given feature.
MFC after: 1 week
Diffstat (limited to 'sys/dev/usb/controller/xhci.h')
-rw-r--r-- | sys/dev/usb/controller/xhci.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/usb/controller/xhci.h b/sys/dev/usb/controller/xhci.h index 2a08ba7..d02c26f 100644 --- a/sys/dev/usb/controller/xhci.h +++ b/sys/dev/usb/controller/xhci.h @@ -369,6 +369,7 @@ struct xhci_endpoint_ext { uint8_t trb_index[XHCI_MAX_STREAMS]; uint8_t trb_halted; uint8_t trb_running; + uint8_t trb_ep_mode; }; enum { |