Lines Matching refs:command_res_urb

342 	struct urb *command_res_urb;  member
378 usb_free_urb(vub300->command_res_urb); in vub300_delete()
379 vub300->command_res_urb = NULL; in vub300_delete()
467 usb_fill_bulk_urb(vub300->command_res_urb, vub300->udev, pipe, in irqpoll_out_completed()
470 vub300->command_res_urb->actual_length = 0; in irqpoll_out_completed()
471 ret = usb_submit_urb(vub300->command_res_urb, GFP_ATOMIC); in irqpoll_out_completed()
590 if (vub300->command_res_urb->actual_length == 0) in __vub300_irqpoll_response()
673 usb_kill_urb(vub300->command_res_urb); in __do_poll()
801 } else if (vub300->command_res_urb->actual_length == 0) { in command_res_completed()
834 usb_fill_bulk_urb(vub300->command_res_urb, vub300->udev, pipe, in command_out_completed()
837 vub300->command_res_urb->actual_length = 0; in command_out_completed()
838 ret = usb_submit_urb(vub300->command_res_urb, GFP_ATOMIC); in command_out_completed()
1192 usb_unlink_urb(vub300->command_res_urb); in vub300_sg_timed_out()
1453 usb_unlink_urb(vub300->command_res_urb); in __command_read_data()
1571 usb_unlink_urb(vub300->command_res_urb); in __command_write_data()
1611 usb_kill_urb(vub300->command_res_urb); in __vub300_command_response()
1622 usb_kill_urb(vub300->command_res_urb); in __vub300_command_response()
1633 } else if (vub300->command_res_urb->status) { in __vub300_command_response()
1634 vub300->usb_transport_fail = vub300->command_res_urb->status; in __vub300_command_response()
1635 cmd->error = -EPROTO == vub300->command_res_urb->status ? in __vub300_command_response()
1636 -ESHUTDOWN : vub300->command_res_urb->status; in __vub300_command_response()
2103 struct urb *command_res_urb; in vub300_probe() local
2122 command_res_urb = usb_alloc_urb(0, GFP_KERNEL); in vub300_probe()
2123 if (!command_res_urb) { in vub300_probe()
2195 vub300->command_res_urb = command_res_urb; in vub300_probe()
2359 usb_free_urb(command_res_urb); in vub300_probe()