Lines Matching refs:stream_urb
150 void *stream_urb; member
1020 usb_fill_bulk_urb(pipe_info->stream_urb, cam->udev, in read_pipe_completion()
1027 purb->status = usb_submit_urb(pipe_info->stream_urb, in read_pipe_completion()
1048 pipe_info->stream_urb = usb_alloc_urb(0, GFP_KERNEL); in zr364xx_start_readpipe()
1049 if (!pipe_info->stream_urb) { in zr364xx_start_readpipe()
1054 usb_fill_bulk_urb(pipe_info->stream_urb, cam->udev, in zr364xx_start_readpipe()
1060 DBG("submitting URB %p\n", pipe_info->stream_urb); in zr364xx_start_readpipe()
1061 retval = usb_submit_urb(pipe_info->stream_urb, GFP_KERNEL); in zr364xx_start_readpipe()
1084 if (pipe_info->stream_urb) { in zr364xx_stop_readpipe()
1086 usb_kill_urb(pipe_info->stream_urb); in zr364xx_stop_readpipe()
1087 usb_free_urb(pipe_info->stream_urb); in zr364xx_stop_readpipe()
1088 pipe_info->stream_urb = NULL; in zr364xx_stop_readpipe()