summaryrefslogtreecommitdiff
path: root/drivers/media/radio/radio-gemtek-pci.c
diff options
context:
space:
mode:
authorAlexey Klimov <klimov.linux@gmail.com>2009-03-29 23:19:54 (GMT)
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-04-07 00:44:30 (GMT)
commitff1a3ebb9cd9baecd167500c660bd76129b67b1c (patch)
tree446537820a4b8e10469276c8f394c2d8a4e42567 /drivers/media/radio/radio-gemtek-pci.c
parent65d9ff9c85d3c2e06d22aed78efee8404563eff6 (diff)
downloadlinux-fsl-qoriq-ff1a3ebb9cd9baecd167500c660bd76129b67b1c.tar.xz
V4L/DVB (11391): pci-isa radios: remove open and release functions
Patch removes empty open and release functions in pci and isa radio drivers, setting them to NULL. V4L module doesn't call for them due to previous patch. Signed-off-by: Alexey Klimov <klimov.linux@gmail.com> 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.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/drivers/media/radio/radio-gemtek-pci.c b/drivers/media/radio/radio-gemtek-pci.c
index 09265d2..c3f579d 100644
--- a/drivers/media/radio/radio-gemtek-pci.c
+++ b/drivers/media/radio/radio-gemtek-pci.c
@@ -356,20 +356,8 @@ static struct pci_device_id gemtek_pci_id[] =
MODULE_DEVICE_TABLE(pci, gemtek_pci_id);
-static int gemtek_pci_open(struct file *file)
-{
- return 0;
-}
-
-static int gemtek_pci_release(struct file *file)
-{
- return 0;
-}
-
static const struct v4l2_file_operations gemtek_pci_fops = {
.owner = THIS_MODULE,
- .open = gemtek_pci_open,
- .release = gemtek_pci_release,
.ioctl = video_ioctl2,
};