Lines Matching refs:stream_urb
136 void *stream_urb; member
994 usb_fill_bulk_urb(pipe_info->stream_urb, cam->udev, in read_pipe_completion()
1001 purb->status = usb_submit_urb(pipe_info->stream_urb, in read_pipe_completion()
1022 pipe_info->stream_urb = usb_alloc_urb(0, GFP_KERNEL); in zr364xx_start_readpipe()
1023 if (!pipe_info->stream_urb) in zr364xx_start_readpipe()
1026 usb_fill_bulk_urb(pipe_info->stream_urb, cam->udev, in zr364xx_start_readpipe()
1032 DBG("submitting URB %p\n", pipe_info->stream_urb); in zr364xx_start_readpipe()
1033 retval = usb_submit_urb(pipe_info->stream_urb, GFP_KERNEL); in zr364xx_start_readpipe()
1035 usb_free_urb(pipe_info->stream_urb); in zr364xx_start_readpipe()
1057 if (pipe_info->stream_urb) { in zr364xx_stop_readpipe()
1059 usb_kill_urb(pipe_info->stream_urb); in zr364xx_stop_readpipe()
1060 usb_free_urb(pipe_info->stream_urb); in zr364xx_stop_readpipe()
1061 pipe_info->stream_urb = NULL; in zr364xx_stop_readpipe()