diff options
author | Douglas Schilling Landgraf <dougsland@gmail.com> | 2007-10-29 00:37:07 -0300 |
---|---|---|
committer | Douglas Schilling Landgraf <dougsland@gmail.com> | 2007-10-29 00:37:07 -0300 |
commit | e9dbf7930269128c20563fefa362abdafd29c9b6 (patch) | |
tree | 44793ea01c6cea3e08dff7100b605495b3351281 /linux/drivers/media/video/zr364xx.c | |
parent | 0294016c4638223ac9e4ef0a6b24dd3aafd7ab4f (diff) | |
download | mediapointer-dvb-s2-e9dbf7930269128c20563fefa362abdafd29c9b6.tar.gz mediapointer-dvb-s2-e9dbf7930269128c20563fefa362abdafd29c9b6.tar.bz2 |
zr364: make file_operations const
From: Douglas Schilling Landgraf <dougsland@gmail.com>
zr364: make file_operations const
Signed-off-by: Douglas Schilling Landgraf <dougsland@gmail.com>
Diffstat (limited to 'linux/drivers/media/video/zr364xx.c')
-rw-r--r-- | linux/drivers/media/video/zr364xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/zr364xx.c b/linux/drivers/media/video/zr364xx.c index 86eea8e23..9acfc11bb 100644 --- a/linux/drivers/media/video/zr364xx.c +++ b/linux/drivers/media/video/zr364xx.c @@ -754,7 +754,7 @@ static int zr364xx_mmap(struct file *file, struct vm_area_struct *vma) } -static struct file_operations zr364xx_fops = { +static const struct file_operations zr364xx_fops = { .owner = THIS_MODULE, .open = zr364xx_open, .release = zr364xx_release, |