Lines Matching refs:command_res_urb
339 struct urb *command_res_urb; member
375 usb_free_urb(vub300->command_res_urb); in vub300_delete()
376 vub300->command_res_urb = NULL; in vub300_delete()
464 usb_fill_bulk_urb(vub300->command_res_urb, vub300->udev, pipe, in irqpoll_out_completed()
467 vub300->command_res_urb->actual_length = 0; in irqpoll_out_completed()
468 ret = usb_submit_urb(vub300->command_res_urb, GFP_ATOMIC); in irqpoll_out_completed()
587 if (vub300->command_res_urb->actual_length == 0) in __vub300_irqpoll_response()
668 usb_kill_urb(vub300->command_res_urb); in __do_poll()
796 } else if (vub300->command_res_urb->actual_length == 0) { in command_res_completed()
829 usb_fill_bulk_urb(vub300->command_res_urb, vub300->udev, pipe, in command_out_completed()
832 vub300->command_res_urb->actual_length = 0; in command_out_completed()
833 ret = usb_submit_urb(vub300->command_res_urb, GFP_ATOMIC); in command_out_completed()
1188 usb_unlink_urb(vub300->command_res_urb); in vub300_sg_timed_out()
1445 usb_unlink_urb(vub300->command_res_urb); in __command_read_data()
1563 usb_unlink_urb(vub300->command_res_urb); in __command_write_data()
1603 usb_kill_urb(vub300->command_res_urb); in __vub300_command_response()
1614 usb_kill_urb(vub300->command_res_urb); in __vub300_command_response()
1625 } else if (vub300->command_res_urb->status) { in __vub300_command_response()
1626 vub300->usb_transport_fail = vub300->command_res_urb->status; in __vub300_command_response()
1627 cmd->error = -EPROTO == vub300->command_res_urb->status ? in __vub300_command_response()
1628 -ESHUTDOWN : vub300->command_res_urb->status; in __vub300_command_response()
2092 struct urb *command_res_urb; in vub300_probe() local
2111 command_res_urb = usb_alloc_urb(0, GFP_KERNEL); in vub300_probe()
2112 if (!command_res_urb) { in vub300_probe()
2183 vub300->command_res_urb = command_res_urb; in vub300_probe()
2350 usb_free_urb(command_res_urb); in vub300_probe()