diff options
author | hselasky <hselasky@FreeBSD.org> | 2012-09-12 19:15:29 +0000 |
---|---|---|
committer | hselasky <hselasky@FreeBSD.org> | 2012-09-12 19:15:29 +0000 |
commit | c4ec19db93de3a2c71112e7a239da23f5ff5e5e5 (patch) | |
tree | 833b4bd8f55840e78389bc37f5292077a0fa671a /sys/dev/usb/controller/dwc_otg.h | |
parent | 063b8917f2cb6a041f16c02ed902756ef7313642 (diff) | |
download | FreeBSD-src-c4ec19db93de3a2c71112e7a239da23f5ff5e5e5.zip FreeBSD-src-c4ec19db93de3a2c71112e7a239da23f5ff5e5e5.tar.gz |
Fix TX FIFO sizes. Correct FIFO handling in Host mode.
Diffstat (limited to 'sys/dev/usb/controller/dwc_otg.h')
-rw-r--r-- | sys/dev/usb/controller/dwc_otg.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/usb/controller/dwc_otg.h b/sys/dev/usb/controller/dwc_otg.h index 1f40344..ee484f0 100644 --- a/sys/dev/usb/controller/dwc_otg.h +++ b/sys/dev/usb/controller/dwc_otg.h @@ -70,6 +70,7 @@ struct dwc_otg_td { uint8_t set_toggle:1; uint8_t did_nak:1; uint8_t did_complete:1; + uint8_t got_short:1; }; struct dwc_otg_std_temp { |