From: Bhumika Goyal Date: Sun, 19 Feb 2017 17:29:07 +0000 (-0300) Subject: [media] cx88: constify mb86a16_config structure X-Git-Tag: v4.12-rc1~85^2~48 X-Git-Url: https://git.kernelconcepts.de/?a=commitdiff_plain;h=0244fd78231db16a9b0e44ac76da6a6208dc5ad4;p=karo-tx-linux.git [media] cx88: constify mb86a16_config structure Declare mb86a16_config structure as const as it is only passed as an argument to the function dvb_attach. dvb_attach calls its first argument on the rest of its arguments. The first argument of dvb_attach in the changed case is mb86a16_attach and the parameter of this function to which the object reference is passed is of type const. So, mb86a16_config structures having this property can be made const. Signed-off-by: Bhumika Goyal Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/pci/cx88/cx88-dvb.c b/drivers/media/pci/cx88/cx88-dvb.c index ddf90678df34..49a335f4603e 100644 --- a/drivers/media/pci/cx88/cx88-dvb.c +++ b/drivers/media/pci/cx88/cx88-dvb.c @@ -306,7 +306,7 @@ static const struct zl10353_config cx88_terratec_cinergy_ht_pci_mkii_config = { .if2 = 45600, }; -static struct mb86a16_config twinhan_vp1027 = { +static const struct mb86a16_config twinhan_vp1027 = { .demod_address = 0x08, };