Lines Matching refs:vdev
734 struct video_device *vdev = video_devdata(file); in vpif_querystd() local
735 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_querystd()
762 struct video_device *vdev = video_devdata(file); in vpif_g_std() local
763 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_g_std()
790 struct video_device *vdev = video_devdata(file); in vpif_s_std() local
791 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_s_std()
840 struct video_device *vdev = video_devdata(file); in vpif_enum_input() local
841 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_enum_input()
862 struct video_device *vdev = video_devdata(file); in vpif_g_input() local
863 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_g_input()
878 struct video_device *vdev = video_devdata(file); in vpif_s_input() local
879 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_s_input()
903 struct video_device *vdev = video_devdata(file); in vpif_enum_fmt_vid_cap() local
904 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_enum_fmt_vid_cap()
933 struct video_device *vdev = video_devdata(file); in vpif_try_fmt_vid_cap() local
934 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_try_fmt_vid_cap()
976 struct video_device *vdev = video_devdata(file); in vpif_g_fmt_vid_cap() local
977 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_g_fmt_vid_cap()
998 struct video_device *vdev = video_devdata(file); in vpif_s_fmt_vid_cap() local
999 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_s_fmt_vid_cap()
1049 struct video_device *vdev = video_devdata(file); in vpif_enum_dv_timings() local
1050 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_enum_dv_timings()
1083 struct video_device *vdev = video_devdata(file); in vpif_query_dv_timings() local
1084 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_query_dv_timings()
1114 struct video_device *vdev = video_devdata(file); in vpif_s_dv_timings() local
1115 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_s_dv_timings()
1217 struct video_device *vdev = video_devdata(file); in vpif_g_dv_timings() local
1218 struct channel_obj *ch = video_get_drvdata(vdev); in vpif_g_dv_timings()
1342 struct video_device *vdev; in vpif_probe_complete() local
1392 vdev = &ch->video_dev; in vpif_probe_complete()
1393 strlcpy(vdev->name, VPIF_DRIVER_NAME, sizeof(vdev->name)); in vpif_probe_complete()
1394 vdev->release = video_device_release_empty; in vpif_probe_complete()
1395 vdev->fops = &vpif_fops; in vpif_probe_complete()
1396 vdev->ioctl_ops = &vpif_ioctl_ops; in vpif_probe_complete()
1397 vdev->v4l2_dev = &vpif_obj.v4l2_dev; in vpif_probe_complete()
1398 vdev->vfl_dir = VFL_DIR_RX; in vpif_probe_complete()
1399 vdev->queue = q; in vpif_probe_complete()
1400 vdev->lock = &common->lock; in vpif_probe_complete()
1402 err = video_register_device(vdev, in vpif_probe_complete()