summaryrefslogtreecommitdiff
path: root/linux/drivers/media/video/bt8xx
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@infradead.org>2007-02-21 12:14:46 -0200
committerMauro Carvalho Chehab <mchehab@infradead.org>2007-02-21 12:14:46 -0200
commit2d7689fdc8fa70fe6d3fbd2003a8c1cdaaa786b3 (patch)
tree8ed63a848128a280972014136e690f33140c44be /linux/drivers/media/video/bt8xx
parent9c80adbcf166dcd24b66a43c9303138ab4be5596 (diff)
downloadmediapointer-dvb-s2-2d7689fdc8fa70fe6d3fbd2003a8c1cdaaa786b3.tar.gz
mediapointer-dvb-s2-2d7689fdc8fa70fe6d3fbd2003a8c1cdaaa786b3.tar.bz2
Backport: make file_operations const
From: Mauro Carvalho Chehab <mchehab@infradead.org> Backport a kernel patch by Arjan van de Ven <arjan@linux.intel.com> that made all file_operations instances const. Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/video/bt8xx')
-rw-r--r--linux/drivers/media/video/bt8xx/bttv-driver.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/video/bt8xx/bttv-driver.c b/linux/drivers/media/video/bt8xx/bttv-driver.c
index 4c813a4da..25a61e379 100644
--- a/linux/drivers/media/video/bt8xx/bttv-driver.c
+++ b/linux/drivers/media/video/bt8xx/bttv-driver.c
@@ -3834,7 +3834,7 @@ bttv_mmap(struct file *file, struct vm_area_struct *vma)
return videobuf_mmap_mapper(bttv_queue(fh),vma);
}
-static struct file_operations bttv_fops =
+static const struct file_operations bttv_fops =
{
.owner = THIS_MODULE,
.open = bttv_open,
@@ -3994,7 +3994,7 @@ static unsigned int radio_poll(struct file *file, poll_table *wait)
return cmd.result;
}
-static struct file_operations radio_fops =
+static const struct file_operations radio_fops =
{
.owner = THIS_MODULE,
.open = radio_open,