diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2008-08-23 05:23:55 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-10-12 07:36:54 -0400 |
commit | aa5e90af7d78d1711f8f4275ce3638817c0023dc (patch) | |
tree | 5faee2ec9fe16d72fba3c729c7a81354dace8fd8 /drivers/media/radio/radio-gemtek-pci.c | |
parent | f9e86b5e9d068854a2cf40f8003ef639e80cca6c (diff) |
V4L/DVB (8783): v4l: add all missing video_device release callbacks
All drivers that call video_device_register where checked to see if they
set the release callback of struct video_device. Where that callback was
missing it was added.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/radio/radio-gemtek-pci.c')
-rw-r--r-- | drivers/media/radio/radio-gemtek-pci.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/media/radio/radio-gemtek-pci.c b/drivers/media/radio/radio-gemtek-pci.c index a7b9a5df4ca7..d65fd287bde1 100644 --- a/drivers/media/radio/radio-gemtek-pci.c +++ b/drivers/media/radio/radio-gemtek-pci.c | |||
@@ -401,9 +401,10 @@ static const struct v4l2_ioctl_ops gemtek_pci_ioctl_ops = { | |||
401 | }; | 401 | }; |
402 | 402 | ||
403 | static struct video_device vdev_template = { | 403 | static struct video_device vdev_template = { |
404 | .name = "Gemtek PCI Radio", | 404 | .name = "Gemtek PCI Radio", |
405 | .fops = &gemtek_pci_fops, | 405 | .fops = &gemtek_pci_fops, |
406 | .ioctl_ops = &gemtek_pci_ioctl_ops, | 406 | .ioctl_ops = &gemtek_pci_ioctl_ops, |
407 | .release = video_device_release_empty, | ||
407 | }; | 408 | }; |
408 | 409 | ||
409 | static int __devinit gemtek_pci_probe( struct pci_dev *pci_dev, const struct pci_device_id *pci_id ) | 410 | static int __devinit gemtek_pci_probe( struct pci_dev *pci_dev, const struct pci_device_id *pci_id ) |