Lines Matching defs:qtd
2038 * @qtd: The QTD to initialize
2041 void dwc2_hcd_qtd_init(struct dwc2_qtd *qtd, struct dwc2_hcd_urb *urb)
2043 qtd->urb = urb;
2051 qtd->data_toggle = DWC2_HC_PID_DATA1;
2052 qtd->control_phase = DWC2_CONTROL_SETUP;
2056 qtd->complete_split = 0;
2057 qtd->isoc_split_pos = DWC2_HCSPLT_XACTPOS_ALL;
2058 qtd->isoc_split_offset = 0;
2059 qtd->in_process = 0;
2061 /* Store the qtd ptr in the urb to reference the QTD */
2062 urb->qtd = qtd;
2070 * @qtd: The QTD to add
2071 * @qh: Queue head to add qtd to
2078 int dwc2_hcd_qtd_add(struct dwc2_hsotg *hsotg, struct dwc2_qtd *qtd,
2093 qtd->qh = qh;
2094 list_add_tail(&qtd->qtd_list_entry, &qh->qtd_list);