summaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb-frontends/tda665x.c
diff options
context:
space:
mode:
authorJulia Lawall2016-09-11 16:44:12 +0200
committerMauro Carvalho Chehab2016-09-19 21:22:55 +0200
commit14c4bf3c6f7d76d2b2b50cc82f6830d6948f6faa (patch)
treeb40e2f76707cb681a062bb89e70f09bd3780499c /drivers/media/dvb-frontends/tda665x.c
parent[media] constify local structures (diff)
downloadkernel-qcow2-linux-14c4bf3c6f7d76d2b2b50cc82f6830d6948f6faa.tar.gz
kernel-qcow2-linux-14c4bf3c6f7d76d2b2b50cc82f6830d6948f6faa.tar.xz
kernel-qcow2-linux-14c4bf3c6f7d76d2b2b50cc82f6830d6948f6faa.zip
[media] dvb-frontends: constify dvb_tuner_ops structures
These structures are only used to copy into other structures, so declare them as const. 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 dvb_tuner_ops i@p = { ... }; @ok1@ identifier r.i; expression e; position p; @@ e = i@p @ok2@ identifier r.i; expression e1, e2; position p; @@ memcpy(e1, &i@p, e2) @bad@ position p != {r.p,ok1.p,ok2.p}; identifier r.i; struct dvb_tuner_ops e; @@ e@i@p @depends on !bad disable optional_qualifier@ identifier r.i; @@ static +const struct dvb_tuner_ops 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>
Diffstat (limited to 'drivers/media/dvb-frontends/tda665x.c')
-rw-r--r--drivers/media/dvb-frontends/tda665x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb-frontends/tda665x.c b/drivers/media/dvb-frontends/tda665x.c
index 82f8cc534f33..7ca965987f40 100644
--- a/drivers/media/dvb-frontends/tda665x.c
+++ b/drivers/media/dvb-frontends/tda665x.c
@@ -206,7 +206,7 @@ static int tda665x_release(struct dvb_frontend *fe)
return 0;
}
-static struct dvb_tuner_ops tda665x_ops = {
+static const struct dvb_tuner_ops tda665x_ops = {
.get_status = tda665x_get_status,
.set_params = tda665x_set_params,
.get_frequency = tda665x_get_frequency,