Commit 3cd0e29d authored by Amit Virdi's avatar Amit Virdi Committed by Felipe Balbi

usb: dwc3: Remove current_trb as it is unused

This field was introduced but never used. So, remove it.
Signed-off-by: default avatarAmit Virdi <amit.virdi@st.com>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent 110381e1
...@@ -431,7 +431,6 @@ struct dwc3_event_buffer { ...@@ -431,7 +431,6 @@ struct dwc3_event_buffer {
* @dwc: pointer to DWC controller * @dwc: pointer to DWC controller
* @saved_state: ep state saved during hibernation * @saved_state: ep state saved during hibernation
* @flags: endpoint flags (wedged, stalled, ...) * @flags: endpoint flags (wedged, stalled, ...)
* @current_trb: index of current used trb
* @number: endpoint number (1 - 15) * @number: endpoint number (1 - 15)
* @type: set to bmAttributes & USB_ENDPOINT_XFERTYPE_MASK * @type: set to bmAttributes & USB_ENDPOINT_XFERTYPE_MASK
* @resource_index: Resource transfer index * @resource_index: Resource transfer index
...@@ -464,8 +463,6 @@ struct dwc3_ep { ...@@ -464,8 +463,6 @@ struct dwc3_ep {
/* This last one is specific to EP0 */ /* This last one is specific to EP0 */
#define DWC3_EP0_DIR_IN (1 << 31) #define DWC3_EP0_DIR_IN (1 << 31)
unsigned current_trb;
u8 number; u8 number;
u8 type; u8 type;
u8 resource_index; u8 resource_index;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment