Lines Matching refs:vfd
802 struct video_device *vfd; in rga_probe() local
845 vfd = video_device_alloc(); in rga_probe()
846 if (!vfd) { in rga_probe()
851 *vfd = rga_videodev; in rga_probe()
852 vfd->lock = &rga->mutex; in rga_probe()
853 vfd->v4l2_dev = &rga->v4l2_dev; in rga_probe()
855 video_set_drvdata(vfd, rga); in rga_probe()
856 rga->vfd = vfd; in rga_probe()
903 ret = video_register_device(vfd, VFL_TYPE_VIDEO, -1); in rga_probe()
910 vfd->name, video_device_node_name(vfd)); in rga_probe()
924 video_device_release(vfd); in rga_probe()
946 video_unregister_device(rga->vfd); in rga_remove()