summaryrefslogtreecommitdiffstats
path: root/Documentation/driver-api/usb
diff options
context:
space:
mode:
authorFelipe Balbi <felipe.balbi@linux.intel.com>2018-03-29 11:10:45 +0300
committerFelipe Balbi <felipe.balbi@linux.intel.com>2018-05-21 10:00:52 +0300
commit5f2e7975f0dfebd024cdef490d44dc4593d9f778 (patch)
treee78f32959e1c308154f2108b3f0fe492e8ca433b /Documentation/driver-api/usb
parent1912cbc60f44f0ccc5ae8b90243b9ee304d71d39 (diff)
downloadlinux-5f2e7975f0dfebd024cdef490d44dc4593d9f778.tar.gz
linux-5f2e7975f0dfebd024cdef490d44dc4593d9f778.tar.xz
usb: dwc3: gadget: remove DWC3_EP_BUSY flag
It has no use anymore. Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
Diffstat (limited to 'Documentation/driver-api/usb')
-rw-r--r--Documentation/driver-api/usb/dwc3.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/driver-api/usb/dwc3.rst b/Documentation/driver-api/usb/dwc3.rst
index c3dc84a50ce5..33f65d263087 100644
--- a/Documentation/driver-api/usb/dwc3.rst
+++ b/Documentation/driver-api/usb/dwc3.rst
@@ -674,7 +674,7 @@ operations, both of which can be traced. Format is::
__entry->flags & DWC3_EP_ENABLED ? 'E' : 'e',
__entry->flags & DWC3_EP_STALL ? 'S' : 's',
__entry->flags & DWC3_EP_WEDGE ? 'W' : 'w',
- __entry->flags & DWC3_EP_BUSY ? 'B' : 'b',
+ __entry->flags & DWC3_EP_TRANSFER_STARTED ? 'B' : 'b',
__entry->flags & DWC3_EP_PENDING_REQUEST ? 'P' : 'p',
__entry->flags & DWC3_EP_MISSED_ISOC ? 'M' : 'm',
__entry->flags & DWC3_EP_END_TRANSFER_PENDING ? 'E' : 'e',