Lines Matching refs:vfd
590 int saa7146_register_device(struct video_device *vfd, struct saa7146_dev *dev, in saa7146_register_device() argument
598 vfd->fops = &video_fops; in saa7146_register_device()
600 vfd->ioctl_ops = &dev->ext_vv_data->vid_ops; in saa7146_register_device()
602 vfd->ioctl_ops = &dev->ext_vv_data->vbi_ops; in saa7146_register_device()
603 vfd->release = video_device_release_empty; in saa7146_register_device()
604 vfd->lock = &dev->v4l2_lock; in saa7146_register_device()
605 vfd->v4l2_dev = &dev->v4l2_dev; in saa7146_register_device()
606 vfd->tvnorms = 0; in saa7146_register_device()
608 vfd->tvnorms |= dev->ext_vv_data->stds[i].id; in saa7146_register_device()
609 strlcpy(vfd->name, name, sizeof(vfd->name)); in saa7146_register_device()
610 video_set_drvdata(vfd, dev); in saa7146_register_device()
612 err = video_register_device(vfd, type, -1); in saa7146_register_device()
619 dev->name, video_device_node_name(vfd)); in saa7146_register_device()
624 int saa7146_unregister_device(struct video_device *vfd, struct saa7146_dev *dev) in saa7146_unregister_device() argument
628 video_unregister_device(vfd); in saa7146_unregister_device()