Lines Matching refs:vfd
624 struct video_device *vfd; in g2d_probe() local
690 vfd = video_device_alloc(); in g2d_probe()
691 if (!vfd) { in g2d_probe()
696 *vfd = g2d_videodev; in g2d_probe()
697 vfd->lock = &dev->mutex; in g2d_probe()
698 vfd->v4l2_dev = &dev->v4l2_dev; in g2d_probe()
699 ret = video_register_device(vfd, VFL_TYPE_GRABBER, 0); in g2d_probe()
704 video_set_drvdata(vfd, dev); in g2d_probe()
705 snprintf(vfd->name, sizeof(vfd->name), "%s", g2d_videodev.name); in g2d_probe()
706 dev->vfd = vfd; in g2d_probe()
708 vfd->num); in g2d_probe()
729 video_unregister_device(dev->vfd); in g2d_probe()
731 video_device_release(vfd); in g2d_probe()
752 video_unregister_device(dev->vfd); in g2d_remove()