diff options
| author | Bhumika Goyal <[email protected]> | 2016-12-13 15:26:13 -0200 |
|---|---|---|
| committer | Mauro Carvalho Chehab <[email protected]> | 2017-02-03 09:33:55 -0200 |
| commit | 4d7aa5e9911c47cb40b0a5ed1b192ff50f4d6832 (patch) | |
| tree | f30f470fbd6ef7def0c895030e71d40c317a7adf /tools/perf/scripts/python | |
| parent | 646c3ae9d96fb92dda2b30b970d89c2a326f2749 (diff) | |
[media] drivers: media: i2c: ak881x: constify v4l2_subdev_* structures
v4l2_subdev_{core/video}_ops structures are stored in the
fields of the v4l2_subdev_ops structure which are of type const.
Also, v4l2_subdev_ops structure is passed to a function
having its argument of type const. As these structures are never
modified, so declare them as const.
Done using Coccinelle: (One of the scripts used)
@r1 disable optional_qualifier @
identifier i;
position p;
@@
static struct v4l2_subdev_video_ops i@p = {...};
@ok1@
identifier r1.i;
position p;
struct v4l2_subdev_ops obj;
@@
obj.video=&i@p;
@bad@
position p!={r1.p,ok1.p};
identifier r1.i;
@@
i@p
@depends on !bad disable optional_qualifier@
identifier r1.i;
@@
+const
struct v4l2_subdev_video_ops i;
File size before:
text data bss dec hex filename
1809 872 0 2681 a79 drivers/media/i2c/ak881x.o
File size after:
text data bss dec hex filename
2185 496 0 2681 a79 drivers/media/i2c/ak881x.o
Signed-off-by: Bhumika Goyal <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python')
0 files changed, 0 insertions, 0 deletions