Lines Matching refs:vdev

613 	struct video_device *vdev = video_devdata(file);  in vpif_g_fmt_vid_out()  local
614 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_g_fmt_vid_out()
630 struct video_device *vdev = video_devdata(file); in vpif_try_fmt_vid_out() local
631 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_try_fmt_vid_out()
658 struct video_device *vdev = video_devdata(file); in vpif_s_fmt_vid_out() local
659 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_s_fmt_vid_out()
682 struct video_device *vdev = video_devdata(file); in vpif_s_std() local
683 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_s_std()
730 struct video_device *vdev = video_devdata(file); in vpif_g_std() local
731 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_g_std()
752 struct video_device *vdev = video_devdata(file); in vpif_enum_output() local
753 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_enum_output()
845 struct video_device *vdev = video_devdata(file); in vpif_s_output() local
846 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_s_output()
863 struct video_device *vdev = video_devdata(file); in vpif_g_output() local
864 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_g_output()
882 struct video_device *vdev = video_devdata(file); in vpif_enum_dv_timings() local
883 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_enum_dv_timings()
914 struct video_device *vdev = video_devdata(file); in vpif_s_dv_timings() local
915 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_s_dv_timings()
1018 struct video_device *vdev = video_devdata(file); in vpif_g_dv_timings() local
1019 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_g_dv_timings()
1141 struct video_device *vdev; in vpif_probe_complete() local
1213 vdev = &ch->video_dev; in vpif_probe_complete()
1214 strlcpy(vdev->name, VPIF_DRIVER_NAME, sizeof(vdev->name)); in vpif_probe_complete()
1215 vdev->release = video_device_release_empty; in vpif_probe_complete()
1216 vdev->fops = &vpif_fops; in vpif_probe_complete()
1217 vdev->ioctl_ops = &vpif_ioctl_ops; in vpif_probe_complete()
1218 vdev->v4l2_dev = &vpif_obj.v4l2_dev; in vpif_probe_complete()
1219 vdev->vfl_dir = VFL_DIR_TX; in vpif_probe_complete()
1220 vdev->queue = q; in vpif_probe_complete()
1221 vdev->lock = &common->lock; in vpif_probe_complete()
1223 err = video_register_device(vdev, VFL_TYPE_GRABBER, in vpif_probe_complete()