]> git.baikalelectronics.ru Git - kernel.git/commit
media: i2c: adv7842: make array cri static and const, makes object smaller
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Fri, 11 Oct 2019 20:48:29 +0000 (17:48 -0300)
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Thu, 24 Oct 2019 21:33:18 +0000 (18:33 -0300)
commitc2b2792ccb9b2d2a02daf826cadeb7e300168b94
tree85f300f73cb9dd8e89a3323171f68d79b511d22a
parent760a4e84871836e605a8a64aa719a5de36c797a4
media: i2c: adv7842: make array cri static and const, makes object smaller

Don't populate the array 'cri' on the stack but instead make it
static and const. Makes the object code smaller by 165 bytes.

Turn the 2nd parameter of 'log_infoframe()' const accordingly.

Before:
   text    data     bss     dec     hex filename
  98533   20024     256  118813   1d01d drivers/media/i2c/adv7842.o

After:
   text    data     bss     dec     hex filename
  98304   20088     256  118648   1cf78 drivers/media/i2c/adv7842.o

Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
drivers/media/i2c/adv7842.c