Lines Matching refs:vdev

729 	struct video_device *vdev = video_devdata(file);  in vpif_querystd()  local
730 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_querystd()
757 struct video_device *vdev = video_devdata(file); in vpif_g_std() local
758 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_g_std()
785 struct video_device *vdev = video_devdata(file); in vpif_s_std() local
786 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_s_std()
835 struct video_device *vdev = video_devdata(file); in vpif_enum_input() local
836 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_enum_input()
857 struct video_device *vdev = video_devdata(file); in vpif_g_input() local
858 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_g_input()
873 struct video_device *vdev = video_devdata(file); in vpif_s_input() local
874 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_s_input()
898 struct video_device *vdev = video_devdata(file); in vpif_enum_fmt_vid_cap() local
899 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_enum_fmt_vid_cap()
928 struct video_device *vdev = video_devdata(file); in vpif_try_fmt_vid_cap() local
929 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_try_fmt_vid_cap()
971 struct video_device *vdev = video_devdata(file); in vpif_g_fmt_vid_cap() local
972 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_g_fmt_vid_cap()
993 struct video_device *vdev = video_devdata(file); in vpif_s_fmt_vid_cap() local
994 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_s_fmt_vid_cap()
1044 struct video_device *vdev = video_devdata(file); in vpif_enum_dv_timings() local
1045 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_enum_dv_timings()
1078 struct video_device *vdev = video_devdata(file); in vpif_query_dv_timings() local
1079 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_query_dv_timings()
1109 struct video_device *vdev = video_devdata(file); in vpif_s_dv_timings() local
1110 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_s_dv_timings()
1212 struct video_device *vdev = video_devdata(file); in vpif_g_dv_timings() local
1213 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_g_dv_timings()
1337 struct video_device *vdev; in vpif_probe_complete() local
1387 vdev = &ch->video_dev; in vpif_probe_complete()
1388 strlcpy(vdev->name, VPIF_DRIVER_NAME, sizeof(vdev->name)); in vpif_probe_complete()
1389 vdev->release = video_device_release_empty; in vpif_probe_complete()
1390 vdev->fops = &vpif_fops; in vpif_probe_complete()
1391 vdev->ioctl_ops = &vpif_ioctl_ops; in vpif_probe_complete()
1392 vdev->v4l2_dev = &vpif_obj.v4l2_dev; in vpif_probe_complete()
1393 vdev->vfl_dir = VFL_DIR_RX; in vpif_probe_complete()
1394 vdev->queue = q; in vpif_probe_complete()
1395 vdev->lock = &common->lock; in vpif_probe_complete()
1397 err = video_register_device(vdev, in vpif_probe_complete()