Lines Matching refs:vdev
97 isp_dbg(2, &video->ve.vdev,
164 v4l2_err(&video->ve.vdev,
213 isp_dbg(2, &video->ve.vdev,
268 struct media_entity *me = &ve->vdev.entity;
306 struct media_entity *entity = &ivc->ve.vdev.entity;
493 struct media_entity *me = &ve->vdev.entity;
526 media_pipeline_stop(&video->ve.vdev.entity);
573 struct video_device *vdev;
606 vdev = &iv->ve.vdev;
607 memset(vdev, 0, sizeof(*vdev));
608 strscpy(vdev->name, "fimc-is-isp.capture", sizeof(vdev->name));
609 vdev->queue = q;
610 vdev->fops = &isp_video_fops;
611 vdev->ioctl_ops = &isp_video_ioctl_ops;
612 vdev->v4l2_dev = v4l2_dev;
613 vdev->minor = -1;
614 vdev->release = video_device_release_empty;
615 vdev->lock = &isp->video_lock;
616 vdev->device_caps = V4L2_CAP_STREAMING | V4L2_CAP_VIDEO_CAPTURE_MPLANE;
619 ret = media_entity_pads_init(&vdev->entity, 1, &iv->pad);
623 video_set_drvdata(vdev, isp);
625 ret = video_register_device(vdev, VFL_TYPE_VIDEO, -1);
627 media_entity_cleanup(&vdev->entity);
632 vdev->name, video_device_node_name(vdev));
649 if (video_is_registered(&ve->vdev)) {
650 video_unregister_device(&ve->vdev);
651 media_entity_cleanup(&ve->vdev.entity);