Lines Matching refs:vfd
605 struct video_device *vfd; in dma2d_probe() local
653 vfd = video_device_alloc(); in dma2d_probe()
654 if (!vfd) { in dma2d_probe()
660 *vfd = dma2d_videodev; in dma2d_probe()
661 vfd->lock = &dev->mutex; in dma2d_probe()
662 vfd->v4l2_dev = &dev->v4l2_dev; in dma2d_probe()
663 vfd->device_caps = V4L2_CAP_VIDEO_M2M | V4L2_CAP_STREAMING; in dma2d_probe()
673 ret = video_register_device(vfd, VFL_TYPE_VIDEO, 0); in dma2d_probe()
679 video_set_drvdata(vfd, dev); in dma2d_probe()
680 dev->vfd = vfd; in dma2d_probe()
682 vfd->num); in dma2d_probe()
688 video_device_release(vfd); in dma2d_probe()
705 video_unregister_device(dev->vfd); in dma2d_remove()