summaryrefslogtreecommitdiff
path: root/drivers/staging/most/aim-v4l2/video.c
diff options
context:
space:
mode:
authorBhumika Goyal <bhumirks@gmail.com>2016-09-27 09:17:12 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-09-27 11:06:55 (GMT)
commitaf2708f5e8a82ddad80ff3f32102defd4ffd87d7 (patch)
treeb6a5d8d8472785f66a058c60ef4022287b411bd3 /drivers/staging/most/aim-v4l2/video.c
parentcfb459edaa91d624e42a959f0356d341a3347c76 (diff)
downloadlinux-af2708f5e8a82ddad80ff3f32102defd4ffd87d7.tar.xz
Staging: most: aim-v4l2: constify v4l2_file_operations structures
Check for v4l2_file_operations structures that are only stored in the fops field of video_device structures. As this field is constant, so v4l2_file_operations structures having this property can also be declared constant. Done using coccinelle: @r1 disable optional_qualifier @ identifier i; position p; @@ static struct v4l2_file_operations i@p = {...}; @ok1@ identifier r1.i; position p; struct video_device x; @@ x.fops=&i@p; @bad@ position p!={r1.p,ok1.p}; identifier r1.i; @@ i@p @depends on !bad disable optional_qualifier@ identifier r1.i; @@ static +const struct v4l2_file_operations i={...}; @depends on !bad disable optional_qualifier@ identifier r1.i; @@ +const struct v4l2_file_operations i; File size before: text data bss dec hex filename 5608 160 4 5772 168c drivers/staging/most/aim-v4l2/video.o File size after: text data bss dec hex filename 5696 96 4 5796 16a4 drivers/staging/most/aim-v4l2/video.o Signed-off-by: Bhumika Goyal <bhumirks@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/most/aim-v4l2/video.c')
-rw-r--r--drivers/staging/most/aim-v4l2/video.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/most/aim-v4l2/video.c b/drivers/staging/most/aim-v4l2/video.c
index 400f727..e074841 100644
--- a/drivers/staging/most/aim-v4l2/video.c
+++ b/drivers/staging/most/aim-v4l2/video.c
@@ -369,7 +369,7 @@ static int vidioc_s_input(struct file *file, void *priv, unsigned int index)
return 0;
}
-static struct v4l2_file_operations aim_fops = {
+static const struct v4l2_file_operations aim_fops = {
.owner = THIS_MODULE,
.open = aim_vdev_open,
.release = aim_vdev_close,