Lines Matching refs:vfd
88 struct video_device *vfd; member
923 struct video_device *vfd; in ge2d_probe() local
982 vfd = video_device_alloc(); in ge2d_probe()
983 if (!vfd) { in ge2d_probe()
989 *vfd = ge2d_videodev; in ge2d_probe()
990 vfd->lock = &ge2d->mutex; in ge2d_probe()
991 vfd->v4l2_dev = &ge2d->v4l2_dev; in ge2d_probe()
993 video_set_drvdata(vfd, ge2d); in ge2d_probe()
994 ge2d->vfd = vfd; in ge2d_probe()
1004 ret = video_register_device(vfd, VFL_TYPE_VIDEO, -1); in ge2d_probe()
1011 vfd->name, video_device_node_name(vfd)); in ge2d_probe()
1018 video_device_release(ge2d->vfd); in ge2d_probe()
1031 video_unregister_device(ge2d->vfd); in ge2d_remove()