Lines Matching refs:vfd
623 struct video_device *vfd; in g2d_probe() local
693 vfd = video_device_alloc(); in g2d_probe()
694 if (!vfd) { in g2d_probe()
699 *vfd = g2d_videodev; in g2d_probe()
700 vfd->lock = &dev->mutex; in g2d_probe()
701 vfd->v4l2_dev = &dev->v4l2_dev; in g2d_probe()
702 ret = video_register_device(vfd, VFL_TYPE_GRABBER, 0); in g2d_probe()
707 video_set_drvdata(vfd, dev); in g2d_probe()
708 snprintf(vfd->name, sizeof(vfd->name), "%s", g2d_videodev.name); in g2d_probe()
709 dev->vfd = vfd; in g2d_probe()
711 vfd->num); in g2d_probe()
736 video_unregister_device(dev->vfd); in g2d_probe()
738 video_device_release(vfd); in g2d_probe()
761 video_unregister_device(dev->vfd); in g2d_remove()