Lines Matching refs:vfd
622 struct video_device *vfd; in g2d_probe() local
692 vfd = video_device_alloc(); in g2d_probe()
693 if (!vfd) { in g2d_probe()
698 *vfd = g2d_videodev; in g2d_probe()
699 vfd->lock = &dev->mutex; in g2d_probe()
700 vfd->v4l2_dev = &dev->v4l2_dev; in g2d_probe()
701 ret = video_register_device(vfd, VFL_TYPE_GRABBER, 0); in g2d_probe()
706 video_set_drvdata(vfd, dev); in g2d_probe()
707 snprintf(vfd->name, sizeof(vfd->name), "%s", g2d_videodev.name); in g2d_probe()
708 dev->vfd = vfd; in g2d_probe()
710 vfd->num); in g2d_probe()
735 video_unregister_device(dev->vfd); in g2d_probe()
737 video_device_release(vfd); in g2d_probe()
760 video_unregister_device(dev->vfd); in g2d_remove()