static int finish_td(struct xhci_hcd *xhci, struct xhci_td *td,
        union xhci_trb *ep_trb, struct xhci_transfer_event *event,
-       struct xhci_virt_ep *ep, int *status, bool skip)
+       struct xhci_virt_ep *ep, int *status)
 {
        struct xhci_virt_device *xdev;
        struct xhci_ep_ctx *ep_ctx;
        ep_ctx = xhci_get_ep_ctx(xhci, xdev->out_ctx, ep_index);
        trb_comp_code = GET_COMP_CODE(le32_to_cpu(event->transfer_len));
 
-       if (skip)
-               goto td_cleanup;
-
        if (trb_comp_code == COMP_STOPPED_LENGTH_INVALID ||
                        trb_comp_code == COMP_STOPPED ||
                        trb_comp_code == COMP_STOPPED_SHORT_PACKET) {
                inc_deq(xhci, ep_ring);
        }
 
-td_cleanup:
        return xhci_td_cleanup(xhci, td, ep_ring, status);
 }
 
                td->urb->actual_length = requested;
 
 finish_td:
-       return finish_td(xhci, td, ep_trb, event, ep, status, false);
+       return finish_td(xhci, td, ep_trb, event, ep, status);
 }
 
 /*
 
        td->urb->actual_length += frame->actual_length;
 
-       return finish_td(xhci, td, ep_trb, event, ep, status, false);
+       return finish_td(xhci, td, ep_trb, event, ep, status);
 }
 
 static int skip_isoc_td(struct xhci_hcd *xhci, struct xhci_td *td,
                inc_deq(xhci, ep_ring);
        inc_deq(xhci, ep_ring);
 
-       return finish_td(xhci, td, NULL, event, ep, status, true);
+       return xhci_td_cleanup(xhci, td, ep_ring, status);
 }
 
 /*
                          remaining);
                td->urb->actual_length = 0;
        }
-       return finish_td(xhci, td, ep_trb, event, ep, status, false);
+       return finish_td(xhci, td, ep_trb, event, ep, status);
 }
 
 /*