Lines Matching refs:td
175 struct td *td; in fhci_mem_free() local
176 struct td *next_td; in fhci_mem_free()
183 list_for_each_entry_safe(td, next_td, &fhci->empty_tds, node) { in fhci_mem_free()
184 list_del(&td->node); in fhci_mem_free()
185 kfree(td); in fhci_mem_free()
221 struct td *td; in fhci_mem_init() local
223 td = kmalloc(sizeof(*td), GFP_KERNEL); in fhci_mem_init()
224 if (!td) in fhci_mem_init()
226 fhci_recycle_empty_td(fhci, td); in fhci_mem_init()
524 struct td *td = fhci_remove_td_from_ed(ed); in fhci_endpoint_disable() local
525 fhci_urb_complete_free(fhci, td->urb); in fhci_endpoint_disable()