Lines Matching defs:qtd
2008 * @qtd: The QTD to initialize
2011 void dwc2_hcd_qtd_init(struct dwc2_qtd *qtd, struct dwc2_hcd_urb *urb)
2013 qtd->urb = urb;
2021 qtd->data_toggle = DWC2_HC_PID_DATA1;
2022 qtd->control_phase = DWC2_CONTROL_SETUP;
2026 qtd->complete_split = 0;
2027 qtd->isoc_split_pos = DWC2_HCSPLT_XACTPOS_ALL;
2028 qtd->isoc_split_offset = 0;
2029 qtd->in_process = 0;
2031 /* Store the qtd ptr in the urb to reference the QTD */
2032 urb->qtd = qtd;
2040 * @qtd: The QTD to add
2041 * @qh: Queue head to add qtd to
2048 int dwc2_hcd_qtd_add(struct dwc2_hsotg *hsotg, struct dwc2_qtd *qtd,
2063 qtd->qh = qh;
2064 list_add_tail(&qtd->qtd_list_entry, &qh->qtd_list);