|
@@ -636,6 +636,7 @@ struct dwc3_event_buffer {
|
|
|
/**
|
|
/**
|
|
|
* struct dwc3_ep - device side endpoint representation
|
|
* struct dwc3_ep - device side endpoint representation
|
|
|
* @endpoint: usb endpoint
|
|
* @endpoint: usb endpoint
|
|
|
|
|
+ * @cancelled_list: list of cancelled requests for this endpoint
|
|
|
* @pending_list: list of pending requests for this endpoint
|
|
* @pending_list: list of pending requests for this endpoint
|
|
|
* @started_list: list of started requests on this endpoint
|
|
* @started_list: list of started requests on this endpoint
|
|
|
* @wait_end_transfer: wait_queue_head_t for waiting on End Transfer complete
|
|
* @wait_end_transfer: wait_queue_head_t for waiting on End Transfer complete
|
|
@@ -659,6 +660,7 @@ struct dwc3_event_buffer {
|
|
|
*/
|
|
*/
|
|
|
struct dwc3_ep {
|
|
struct dwc3_ep {
|
|
|
struct usb_ep endpoint;
|
|
struct usb_ep endpoint;
|
|
|
|
|
+ struct list_head cancelled_list;
|
|
|
struct list_head pending_list;
|
|
struct list_head pending_list;
|
|
|
struct list_head started_list;
|
|
struct list_head started_list;
|
|
|
|
|
|