diff options
author | Alexey Klimov <klimov.linux@gmail.com> | 2009-03-29 20:19:54 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-04-06 21:44:30 -0300 |
commit | ff1a3ebb9cd9baecd167500c660bd76129b67b1c (patch) | |
tree | 446537820a4b8e10469276c8f394c2d8a4e42567 /drivers/media/radio/radio-typhoon.c | |
parent | 65d9ff9c85d3c2e06d22aed78efee8404563eff6 (diff) | |
download | kernel_samsung_aries-ff1a3ebb9cd9baecd167500c660bd76129b67b1c.zip kernel_samsung_aries-ff1a3ebb9cd9baecd167500c660bd76129b67b1c.tar.gz kernel_samsung_aries-ff1a3ebb9cd9baecd167500c660bd76129b67b1c.tar.bz2 |
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-typhoon.c')
-rw-r--r-- | drivers/media/radio/radio-typhoon.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/drivers/media/radio/radio-typhoon.c b/drivers/media/radio/radio-typhoon.c index 92d923c..3a98f13 100644 --- a/drivers/media/radio/radio-typhoon.c +++ b/drivers/media/radio/radio-typhoon.c @@ -314,20 +314,8 @@ static int vidioc_log_status(struct file *file, void *priv) return 0; } -static int typhoon_open(struct file *file) -{ - return 0; -} - -static int typhoon_release(struct file *file) -{ - return 0; -} - static const struct v4l2_file_operations typhoon_fops = { .owner = THIS_MODULE, - .open = typhoon_open, - .release = typhoon_release, .ioctl = video_ioctl2, }; |