Lines Matching refs:vfd

1055 	strlcpy(cap->card, vout->vfd->name, sizeof(cap->card));  in vidioc_querycap()
1877 struct video_device *vfd; in omap_vout_setup_video_data() local
1926 vfd = vout->vfd = video_device_alloc(); in omap_vout_setup_video_data()
1928 if (!vfd) { in omap_vout_setup_video_data()
1933 vfd->release = video_device_release; in omap_vout_setup_video_data()
1934 vfd->ioctl_ops = &vout_ioctl_ops; in omap_vout_setup_video_data()
1936 strlcpy(vfd->name, VOUT_NAME, sizeof(vfd->name)); in omap_vout_setup_video_data()
1938 vfd->fops = &omap_vout_fops; in omap_vout_setup_video_data()
1939 vfd->v4l2_dev = &vout->vid_dev->v4l2_dev; in omap_vout_setup_video_data()
1940 vfd->vfl_dir = VFL_DIR_TX; in omap_vout_setup_video_data()
1943 vfd->minor = -1; in omap_vout_setup_video_data()
2005 struct video_device *vfd = NULL; in omap_vout_create_video_devices() local
2051 vfd = vout->vfd; in omap_vout_create_video_devices()
2052 if (video_register_device(vfd, VFL_TYPE_GRABBER, -1) < 0) { in omap_vout_create_video_devices()
2055 vfd->minor = -1; in omap_vout_create_video_devices()
2059 video_set_drvdata(vfd, vout); in omap_vout_create_video_devices()
2062 " video device %d\n", vfd->minor); in omap_vout_create_video_devices()
2072 video_device_release(vfd); in omap_vout_create_video_devices()
2083 struct video_device *vfd; in omap_vout_cleanup_device() local
2089 vfd = vout->vfd; in omap_vout_cleanup_device()
2091 if (vfd) { in omap_vout_cleanup_device()
2092 if (!video_is_registered(vfd)) { in omap_vout_cleanup_device()
2097 video_device_release(vfd); in omap_vout_cleanup_device()
2103 video_unregister_device(vfd); in omap_vout_cleanup_device()