diff options
author | Douglas Schilling Landgraf <dougsland@gmail.com> | 2007-10-28 23:41:19 -0300 |
---|---|---|
committer | Douglas Schilling Landgraf <dougsland@gmail.com> | 2007-10-28 23:41:19 -0300 |
commit | 0294016c4638223ac9e4ef0a6b24dd3aafd7ab4f (patch) | |
tree | 2ad11be0742dfc9767feca38c81c3146f3919d0c | |
parent | 0258645f9b36d4fb6043d59f0613f3f3efb38282 (diff) | |
download | mediapointer-dvb-s2-0294016c4638223ac9e4ef0a6b24dd3aafd7ab4f.tar.gz mediapointer-dvb-s2-0294016c4638223ac9e4ef0a6b24dd3aafd7ab4f.tar.bz2 |
radio-gemtek: make file_operations const
From: Douglas Schilling Landgraf <dougsland@gmail.com>
make file_operations const
Signed-off-by: Douglas Schilling Landgraf <dougsland@gmail.com>
-rw-r--r-- | linux/drivers/media/radio/radio-gemtek.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/radio/radio-gemtek.c b/linux/drivers/media/radio/radio-gemtek.c index d4debd16b..d80478197 100644 --- a/linux/drivers/media/radio/radio-gemtek.c +++ b/linux/drivers/media/radio/radio-gemtek.c @@ -393,7 +393,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, |