Lines Matching refs:vdev

607 	struct video_device *vdev = video_devdata(file);  in vpif_g_fmt_vid_out()  local
608 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_g_fmt_vid_out()
624 struct video_device *vdev = video_devdata(file); in vpif_try_fmt_vid_out() local
625 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_try_fmt_vid_out()
652 struct video_device *vdev = video_devdata(file); in vpif_s_fmt_vid_out() local
653 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_s_fmt_vid_out()
676 struct video_device *vdev = video_devdata(file); in vpif_s_std() local
677 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_s_std()
724 struct video_device *vdev = video_devdata(file); in vpif_g_std() local
725 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_g_std()
746 struct video_device *vdev = video_devdata(file); in vpif_enum_output() local
747 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_enum_output()
839 struct video_device *vdev = video_devdata(file); in vpif_s_output() local
840 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_s_output()
857 struct video_device *vdev = video_devdata(file); in vpif_g_output() local
858 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_g_output()
876 struct video_device *vdev = video_devdata(file); in vpif_enum_dv_timings() local
877 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_enum_dv_timings()
908 struct video_device *vdev = video_devdata(file); in vpif_s_dv_timings() local
909 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_s_dv_timings()
1012 struct video_device *vdev = video_devdata(file); in vpif_g_dv_timings() local
1013 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_g_dv_timings()
1135 struct video_device *vdev; in vpif_probe_complete() local
1207 vdev = &ch->video_dev; in vpif_probe_complete()
1208 strlcpy(vdev->name, VPIF_DRIVER_NAME, sizeof(vdev->name)); in vpif_probe_complete()
1209 vdev->release = video_device_release_empty; in vpif_probe_complete()
1210 vdev->fops = &vpif_fops; in vpif_probe_complete()
1211 vdev->ioctl_ops = &vpif_ioctl_ops; in vpif_probe_complete()
1212 vdev->v4l2_dev = &vpif_obj.v4l2_dev; in vpif_probe_complete()
1213 vdev->vfl_dir = VFL_DIR_TX; in vpif_probe_complete()
1214 vdev->queue = q; in vpif_probe_complete()
1215 vdev->lock = &common->lock; in vpif_probe_complete()
1217 err = video_register_device(vdev, VFL_TYPE_GRABBER, in vpif_probe_complete()