Lines Matching refs:vfd
169 struct video_device *vfd = container_of(cd, struct video_device, dev); in show_card() local
170 struct bttv *btv = dev_get_drvdata(vfd->parent); in show_card()
4191 struct video_device *vfd; in vdev_init() local
4193 vfd = video_device_alloc(); in vdev_init()
4194 if (NULL == vfd) in vdev_init()
4196 *vfd = *template; in vdev_init()
4197 vfd->minor = -1; in vdev_init()
4198 vfd->parent = &btv->c.pci->dev; in vdev_init()
4199 vfd->release = video_device_release; in vdev_init()
4200 vfd->debug = bttv_debug; in vdev_init()
4201 snprintf(vfd->name, sizeof(vfd->name), "BT%d%s %s (%s)", in vdev_init()
4204 return vfd; in vdev_init()