diff options
author | Douglas Schilling Landgraf <dougsland@gmail.com> | 2007-10-28 23:41:19 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-01-25 19:01:42 -0200 |
commit | c7ac61c4693da113fd067ccfa4246df1e8a5c75e (patch) | |
tree | 100f59b920c8345fe8c4f9ae013c39ecd446ddc9 | |
parent | 073ad9a00c653ac4a1668c324dd132c9996473f1 (diff) |
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>
-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, |