Lines Matching refs:vdev
119 struct video_device vdev; member
182 video_unregister_device(&radio->vdev); in usb_raremono_disconnect()
353 strlcpy(radio->vdev.name, radio->v4l2_dev.name, in usb_raremono_probe()
354 sizeof(radio->vdev.name)); in usb_raremono_probe()
355 radio->vdev.v4l2_dev = &radio->v4l2_dev; in usb_raremono_probe()
356 radio->vdev.fops = &usb_raremono_fops; in usb_raremono_probe()
357 radio->vdev.ioctl_ops = &usb_raremono_ioctl_ops; in usb_raremono_probe()
358 radio->vdev.lock = &radio->lock; in usb_raremono_probe()
359 radio->vdev.release = video_device_release_empty; in usb_raremono_probe()
363 video_set_drvdata(&radio->vdev, radio); in usb_raremono_probe()
367 retval = video_register_device(&radio->vdev, VFL_TYPE_RADIO, -1); in usb_raremono_probe()
370 video_device_node_name(&radio->vdev)); in usb_raremono_probe()