Lines Matching refs:next
23 * initializes the segment to zero, and sets the private next pointer to NULL.
63 seg->next = NULL;
83 seg = first->next;
85 struct xhci_segment *next = seg->next;
87 seg = next;
93 * Make the prev segment point to the next segment.
96 * DMA address of the next segment. The caller needs to set any Link TRB
100 struct xhci_segment *next,
105 if (!prev || !next)
107 prev->next = next;
110 cpu_to_le64(next->dma);
130 struct xhci_segment *next;
141 next = ring->enq_seg->next;
143 xhci_link_segments(last, next, ring->type, chain_links);
241 seg = seg->next;
253 seg = seg->next;
269 seg = seg->next;
341 struct xhci_segment *next;
343 next = xhci_segment_alloc(xhci, cycle_state, max_packet, flags);
344 if (!next) {
347 next = prev->next;
349 prev = next;
353 xhci_link_segments(prev, next, type, chain_links);
355 prev = next;
449 struct xhci_segment *next;
451 next = first->next;
455 first = next;
821 struct xhci_tt_bw_info *tt_info, *next;
834 list_for_each_entry_safe(tt_info, next, tt_list_head, tt_list) {
958 struct xhci_tt_bw_info *tt_info, *next;
972 list_for_each_entry_safe(tt_info, next, tt_list_head, tt_list) {
1843 seg = seg->next;
1891 list_del_init(ep->next);