1. 19 4月, 2017 12 次提交
  2. 18 4月, 2017 24 次提交
  3. 17 4月, 2017 4 次提交
    • B
      [media] pci: mantis: constify mb86a16_config structure · 713be96a
      Bhumika Goyal 提交于
      Declare mb86a16_config structure as const as it is either passed as
      an argument to the function dvb_attach or is dereferenced. 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: NBhumika Goyal <bhumirks@gmail.com>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@s-opensource.com>
      713be96a
    • B
      [media] cx88: constify mb86a16_config structure · 0244fd78
      Bhumika Goyal 提交于
      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: NBhumika Goyal <bhumirks@gmail.com>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@s-opensource.com>
      0244fd78
    • B
      [media] saa7134: constify nxt200x_config structures · f5584613
      Bhumika Goyal 提交于
      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: NBhumika Goyal <bhumirks@gmail.com>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@s-opensource.com>
      f5584613
    • B
      [media] b2c2: constify nxt200x_config structure · c5db7475
      Bhumika Goyal 提交于
      Declare nxt200x_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 nxt200x_attach and the parameter of
      this function to which the object reference is 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
         7566	    568	      0	   8134	   1fc6	common/b2c2/flexcop-fe-tuner.o
      
      File size after:
         text	   data	    bss	    dec	    hex	filename
         7582	    536	      0	   8118	   1fb6	common/b2c2/flexcop-fe-tuner.o
      Signed-off-by: NBhumika Goyal <bhumirks@gmail.com>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@s-opensource.com>
      c5db7475