Lines Matching refs:vfd_decoder
209 struct video_device vfd_decoder; member
1674 strscpy(jpu->vfd_decoder.name, DRV_NAME, sizeof(jpu->vfd_decoder.name)); in jpu_probe()
1675 jpu->vfd_decoder.fops = &jpu_fops; in jpu_probe()
1676 jpu->vfd_decoder.ioctl_ops = &jpu_ioctl_ops; in jpu_probe()
1677 jpu->vfd_decoder.minor = -1; in jpu_probe()
1678 jpu->vfd_decoder.release = video_device_release_empty; in jpu_probe()
1679 jpu->vfd_decoder.lock = &jpu->mutex; in jpu_probe()
1680 jpu->vfd_decoder.v4l2_dev = &jpu->v4l2_dev; in jpu_probe()
1681 jpu->vfd_decoder.vfl_dir = VFL_DIR_M2M; in jpu_probe()
1682 jpu->vfd_decoder.device_caps = V4L2_CAP_STREAMING | in jpu_probe()
1685 ret = video_register_device(&jpu->vfd_decoder, VFL_TYPE_VIDEO, -1); in jpu_probe()
1691 video_set_drvdata(&jpu->vfd_decoder, jpu); in jpu_probe()
1697 jpu->vfd_decoder.num); in jpu_probe()
1717 video_unregister_device(&jpu->vfd_decoder); in jpu_remove()