[media] saa7134: constify nxt200x_config structures
authorBhumika Goyal <bhumirks@gmail.com>
Sun, 19 Feb 2017 13:06:38 +0000 (10:06 -0300)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Mon, 17 Apr 2017 15:18:52 +0000 (12:18 -0300)
commitf558461335922afeb21650a3bddb1b58d183ab7f
tree6fda264ab0cbc3ed56b409a0ea43931763a4e4bd
parentc5db7475a8e22c345f3442b7e4c4ab96d99dacf3
[media] saa7134: constify nxt200x_config structures

Declare nxt200x_config structures as const as they are 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 cases is nxt200x_attach and the parameter of
this function to which the object references are passed is of type
const. So, nxt200x_config structures having this property can be made
const.

File size before:
   text    data     bss     dec     hex filename
  21320    3776      16   25112    6218 saa7134/saa7134-dvb.o

File size after:
   text    data     bss     dec     hex filename
  21384    3744      16   25144    6238 saa7134/saa7134-dvb.o

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/pci/saa7134/saa7134-dvb.c