Bhumika Goyal
5303135c17
media: platform: make video_device const
Make these const as they are only used during a copy operation.
Done using Coccinelle:
@match disable optional_qualifier@
identifier s;
@@
static struct video_device s = {...};
@ref@
position p;
identifier match.s;
@@
s@p
@good1@
identifier match.s;
expression list[3] es;
position ref.p;
@@
cx88_vdev_init(es,&s@p,...)
@good2@
position ref.p;
identifier match.s,f,c;
expression e;
@@
(
e = s@p
|
e = s@p.f
|
c(...,s@p.f,...)
|
c(...,s@p,...)
)
@bad depends on !good1 && !good2@
position ref.p;
identifier match.s;
@@
s@p
@depends on forall !bad disable optional_qualifier@
identifier match.s;
@@
static
+ const
struct video_device s;
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
2017-08-27 08:44:30 -04:00
..
2017-08-20 08:20:20 -04:00
2017-08-20 08:20:20 -04:00
2017-08-20 08:03:33 -04:00
2017-08-20 08:26:53 -04:00
2017-08-26 14:30:25 -04:00
2017-08-20 08:20:20 -04:00
2017-08-20 08:04:00 -04:00
2017-08-27 08:44:30 -04:00
2017-08-09 10:45:26 -04:00
2017-08-20 08:03:55 -04:00
2017-08-20 08:20:42 -04:00
2017-08-08 06:26:48 -04:00
2017-05-09 15:15:47 -07:00
2017-08-08 06:35:10 -04:00
2017-08-26 20:14:42 -04:00
2017-08-26 15:34:37 -04:00
2017-08-20 08:20:20 -04:00
2017-08-08 06:00:26 -04:00
2017-08-20 08:13:26 -04:00
2017-08-27 08:44:30 -04:00
2017-08-20 08:02:21 -04:00
2017-06-13 14:01:10 -03:00
2017-08-20 08:20:20 -04:00
2017-08-26 08:36:45 -04:00
2017-08-26 14:10:41 -04:00
2017-08-27 08:44:30 -04:00
2017-08-20 08:04:30 -04:00
2017-08-26 08:36:29 -04:00
2017-08-20 09:32:49 -04:00
2017-08-20 08:20:20 -04:00
2016-12-24 11:46:01 -08:00
2017-08-27 08:44:30 -04:00
2017-08-26 15:13:11 -04:00
2017-08-27 08:44:30 -04:00
2017-08-26 15:13:11 -04:00
2017-08-27 08:44:30 -04:00
2017-08-20 08:20:20 -04:00
2017-06-20 07:07:37 -03:00
2017-07-19 15:03:55 -04:00
2017-08-20 08:03:51 -04:00
2017-06-09 12:25:36 +01:00
2016-07-08 14:45:07 -03:00
2017-05-19 07:10:03 -03:00
2017-08-27 08:44:30 -04:00
2017-07-20 06:59:25 -04:00
2017-08-27 08:44:30 -04:00