linux/drivers/media/pci/saa7134
Julia Lawall 78f2c50bb4 [media] constify i2c_algorithm structures
These i2c_algorithm structures are only stored in the alg field of an
i2c_adapter structure, which is declared as const.  This declare the
structures as const as well.

The semantic patch that makes this change is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@r disable optional_qualifier@
identifier i;
position p;
@@
static struct i2c_algorithm i@p = { ... };

@ok@
identifier r.i;
struct i2c_adapter e;
position p;
@@
e.alg = &i@p;

@bad@
position p != {r.p,ok.p};
identifier r.i;
@@
i@p

@depends on !bad disable optional_qualifier@
identifier r.i;
@@
static
+const
 struct i2c_algorithm i = { ... };
// </smpl>

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
2016-09-19 16:27:02 -03:00
..
Kconfig [media] saa7134: Fix compilation breakage when go7007 is not selected 2014-09-23 16:13:47 -03:00
Makefile [media] saa7134: Fix compilation breakage when go7007 is not selected 2014-09-23 16:13:47 -03:00
saa7134-alsa.c [media] pci: constify snd_pcm_ops structures 2016-09-19 16:18:42 -03:00
saa7134-cards.c [media] saa7134: Add support for Snazio TvPVR PRO 2016-03-03 09:03:48 -03:00
saa7134-core.c [media] media/pci: convert drivers to use the new vb2_queue dev field 2016-07-08 14:37:17 -03:00
saa7134-dvb.c [media] saa7134: add media controller support 2016-02-10 07:23:44 -02:00
saa7134-empress.c [media] pci: constify vb2_ops structures 2016-09-19 16:21:42 -03:00
saa7134-go7007.c [media] go7007: constify go7007_hpi_ops structures 2016-02-01 07:34:07 -02:00
saa7134-i2c.c [media] constify i2c_algorithm structures 2016-09-19 16:27:02 -03:00
saa7134-input.c [media] saa7134: Add support for Snazio TvPVR PRO 2016-03-03 09:03:48 -03:00
saa7134-reg.h [media] saa7134: add vidioc_querystd 2014-05-23 12:56:01 -03:00
saa7134-ts.c [media] vb2: replace void *alloc_ctxs by struct device *alloc_devs 2016-07-08 14:45:07 -03:00
saa7134-tvaudio.c [media] saa7134: use input types, instead of hardcoding strings 2016-02-10 07:23:42 -02:00
saa7134-vbi.c [media] vb2: replace void *alloc_ctxs by struct device *alloc_devs 2016-07-08 14:45:07 -03:00
saa7134-video.c [media] pci: constify vb2_ops structures 2016-09-19 16:21:42 -03:00
saa7134.h [media] vb2: replace void *alloc_ctxs by struct device *alloc_devs 2016-07-08 14:45:07 -03:00