|
@@ -685,6 +685,8 @@ struct dwc3_hwparams {
|
|
* @request: struct usb_request to be transferred
|
|
* @request: struct usb_request to be transferred
|
|
* @list: a list_head used for request queueing
|
|
* @list: a list_head used for request queueing
|
|
* @dep: struct dwc3_ep owning this request
|
|
* @dep: struct dwc3_ep owning this request
|
|
|
|
+ * @sg: pointer to first incomplete sg
|
|
|
|
+ * @num_pending_sgs: counter to pending sgs
|
|
* @first_trb_index: index to first trb used by this request
|
|
* @first_trb_index: index to first trb used by this request
|
|
* @epnum: endpoint number to which this request refers
|
|
* @epnum: endpoint number to which this request refers
|
|
* @trb: pointer to struct dwc3_trb
|
|
* @trb: pointer to struct dwc3_trb
|
|
@@ -697,7 +699,9 @@ struct dwc3_request {
|
|
struct usb_request request;
|
|
struct usb_request request;
|
|
struct list_head list;
|
|
struct list_head list;
|
|
struct dwc3_ep *dep;
|
|
struct dwc3_ep *dep;
|
|
|
|
+ struct scatterlist *sg;
|
|
|
|
|
|
|
|
+ unsigned num_pending_sgs;
|
|
u8 first_trb_index;
|
|
u8 first_trb_index;
|
|
u8 epnum;
|
|
u8 epnum;
|
|
struct dwc3_trb *trb;
|
|
struct dwc3_trb *trb;
|