diff options
author | Douglas Schilling Landgraf <dougsland@gmail.com> | 2007-10-29 03:41:19 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-01-25 22:01:42 +0100 |
commit | c7ac61c4693da113fd067ccfa4246df1e8a5c75e (patch) | |
tree | 100f59b920c8345fe8c4f9ae013c39ecd446ddc9 /drivers/media/radio/radio-gemtek.c | |
parent | V4L/DVB (6480): bttv: uses input functions, should depend on INPUT (diff) | |
download | linux-c7ac61c4693da113fd067ccfa4246df1e8a5c75e.tar.xz linux-c7ac61c4693da113fd067ccfa4246df1e8a5c75e.zip |
V4L/DVB (6481): radio-gemtek: make file_operations const
make file_operations const
Signed-off-by: Douglas Schilling Landgraf <dougsland@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/radio/radio-gemtek.c')
-rw-r--r-- | drivers/media/radio/radio-gemtek.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/radio/radio-gemtek.c b/drivers/media/radio/radio-gemtek.c index 5e4b9ddb23c0..d69412f587f8 100644 --- a/drivers/media/radio/radio-gemtek.c +++ b/drivers/media/radio/radio-gemtek.c @@ -392,7 +392,7 @@ static struct v4l2_queryctrl radio_qctrl[] = { } }; -static struct file_operations gemtek_fops = { +static const struct file_operations gemtek_fops = { .owner = THIS_MODULE, .open = video_exclusive_open, .release = video_exclusive_release, |