Lines Matching refs:stream_urb
150 void *stream_urb; member
1019 usb_fill_bulk_urb(pipe_info->stream_urb, cam->udev, in read_pipe_completion()
1026 purb->status = usb_submit_urb(pipe_info->stream_urb, in read_pipe_completion()
1047 pipe_info->stream_urb = usb_alloc_urb(0, GFP_KERNEL); in zr364xx_start_readpipe()
1048 if (!pipe_info->stream_urb) { in zr364xx_start_readpipe()
1053 usb_fill_bulk_urb(pipe_info->stream_urb, cam->udev, in zr364xx_start_readpipe()
1059 DBG("submitting URB %p\n", pipe_info->stream_urb); in zr364xx_start_readpipe()
1060 retval = usb_submit_urb(pipe_info->stream_urb, GFP_KERNEL); in zr364xx_start_readpipe()
1083 if (pipe_info->stream_urb) { in zr364xx_stop_readpipe()
1085 usb_kill_urb(pipe_info->stream_urb); in zr364xx_stop_readpipe()
1086 usb_free_urb(pipe_info->stream_urb); in zr364xx_stop_readpipe()
1087 pipe_info->stream_urb = NULL; in zr364xx_stop_readpipe()