Skip to content

Commit

Permalink
media: mxl5xx: constify dvb_frontend_ops structure
Browse files Browse the repository at this point in the history
The dvb_frontend_ops structure is only copied into the ops field
of a dvb_frontend structure, so it can be const.

Done with the help of Coccinelle.

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Sean Young <sean@mess.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
  • Loading branch information
Julia Lawall authored and Mauro Carvalho Chehab committed Dec 3, 2018
1 parent 2c4746c commit 28fc5a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/dvb-frontends/mxl5xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ static int set_input(struct dvb_frontend *fe, int input)
return 0;
}

static struct dvb_frontend_ops mxl_ops = {
static const struct dvb_frontend_ops mxl_ops = {
.delsys = { SYS_DVBS, SYS_DVBS2, SYS_DSS },
.info = {
.name = "MaxLinear MxL5xx DVB-S/S2 tuner-demodulator",
Expand Down

0 comments on commit 28fc5a3

Please sign in to comment.