Home
last modified time | relevance | path

Searched refs:qtd_list (Results 1 – 9 of 9) sorted by relevance

/linux-3.4.99/drivers/usb/host/
Dehci-q.c126 if (list_empty (&qh->qtd_list)) in qh_refresh()
129 qtd = list_entry (qh->qtd_list.next, in qh_refresh()
130 struct ehci_qtd, qtd_list); in qh_refresh()
161 if (qh->qh_state == QH_STATE_IDLE && !list_empty(&qh->qtd_list) in ehci_clear_tt_buffer_complete()
322 if (unlikely (list_empty (&qh->qtd_list))) in qh_completions()
349 list_for_each_safe (entry, tmp, &qh->qtd_list) { in qh_completions()
354 qtd = list_entry (entry, struct ehci_qtd, qtd_list); in qh_completions()
510 if (stopped && qtd->qtd_list.prev != &qh->qtd_list) { in qh_completions()
511 last = list_entry (qtd->qtd_list.prev, in qh_completions()
512 struct ehci_qtd, qtd_list); in qh_completions()
[all …]
Disp1760-hcd.c101 struct list_head qtd_list; member
123 struct list_head qtd_list; member
398 INIT_LIST_HEAD(&qh->qtd_list); in qh_alloc()
406 WARN_ON(!list_empty(&qh->qtd_list)); in qh_free()
545 if (list_is_last(&qtd->qtd_list, &qh->qtd_list)) in last_qtd_of_urb()
549 qtd = list_entry(qtd->qtd_list.next, typeof(*qtd), qtd_list); in last_qtd_of_urb()
730 INIT_LIST_HEAD(&qtd->qtd_list); in qtd_alloc()
800 list_for_each_entry_safe(qtd, qtd_next, &qh->qtd_list, qtd_list) { in collect_qtds()
850 list_del(&qtd->qtd_list); in collect_qtds()
866 if (unlikely(list_empty(&qh->qtd_list))) { in enqueue_qtds()
[all …]
Doxu210hp-hcd.c555 INIT_LIST_HEAD(&qtd->qtd_list); in ehci_qtd_init()
591 INIT_LIST_HEAD(&qtd->qtd_list); in ehci_qtd_alloc()
621 if (!list_empty(&qh->qtd_list) || qh->qh_next.ptr) { in qh_destroy()
648 INIT_LIST_HEAD(&qh->qtd_list); in oxu_qh_alloc()
855 if (list_empty(&qh->qtd_list)) in qh_refresh()
858 qtd = list_entry(qh->qtd_list.next, in qh_refresh()
859 struct ehci_qtd, qtd_list); in qh_refresh()
989 if (unlikely(list_empty(&qh->qtd_list))) in qh_completions()
1007 list_for_each_safe(entry, tmp, &qh->qtd_list) { in qh_completions()
1012 qtd = list_entry(entry, struct ehci_qtd, qtd_list); in qh_completions()
[all …]
Dehci-mem.c46 INIT_LIST_HEAD (&qtd->qtd_list); in ehci_qtd_init()
72 if (!list_empty (&qh->qtd_list) || qh->qh_next.ptr) { in qh_destroy()
99 INIT_LIST_HEAD (&qh->qtd_list); in ehci_qh_alloc()
Dehci-hcd.c1001 struct list_head qtd_list; in ehci_urb_enqueue() local
1003 INIT_LIST_HEAD (&qtd_list); in ehci_urb_enqueue()
1015 if (!qh_urb_transaction (ehci, urb, &qtd_list, mem_flags)) in ehci_urb_enqueue()
1017 return submit_async(ehci, urb, &qtd_list, mem_flags); in ehci_urb_enqueue()
1020 if (!qh_urb_transaction (ehci, urb, &qtd_list, mem_flags)) in ehci_urb_enqueue()
1022 return intr_submit(ehci, urb, &qtd_list, mem_flags); in ehci_urb_enqueue()
1186 if (list_empty (&qh->qtd_list)) { in ehci_endpoint_disable()
1197 list_empty (&qh->qtd_list) ? "" : "(has tds)"); in ehci_endpoint_disable()
1228 if (!list_empty(&qh->qtd_list)) { in ehci_endpoint_reset()
Doxu210hp.h226 struct list_head qtd_list; /* sw qtd list */ member
299 struct list_head qtd_list; /* sw qtd list */ member
Dehci.h266 struct list_head qtd_list; /* sw qtd list */ member
353 struct list_head qtd_list; /* sw qtd list */ member
Dehci-dbg.c473 list_for_each (entry, &qh->qtd_list) { in qh_lines()
474 td = list_entry (entry, struct ehci_qtd, qtd_list); in qh_lines()
630 &p.qh->qtd_list, in fill_periodic_buffer()
631 qtd_list) { in fill_periodic_buffer()
Dehci-sched.c684 if (list_empty (&qh->qtd_list) in intr_deschedule()
699 if (!list_empty(&qh->qtd_list) && in intr_deschedule()
897 struct list_head *qtd_list, in intr_submit() argument
932 qh = qh_append_tds(ehci, urb, qtd_list, epnum, &urb->ep->hcpriv); in intr_submit()
944 qtd_list_free (ehci, urb, qtd_list); in intr_submit()
2350 if (unlikely(list_empty(&temp.qh->qtd_list) || in scan_periodic()