]> asedeno.scripts.mit.edu Git - linux.git/commit
media: ov9640: make const arrays res_x/y static const, reduces object code size
authorColin Ian King <colin.king@canonical.com>
Wed, 6 Sep 2017 13:30:16 +0000 (09:30 -0400)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Sat, 23 Sep 2017 12:30:10 +0000 (08:30 -0400)
commit3ff692fad32829b5b2199273d2b35273ecab007f
tree5fdf74e61835d6d9ccc2e1ca8335237ce6e4394e
parente90ce8aa3cb2fcfb0fd45f95e89946a15c03737c
media: ov9640: make const arrays res_x/y static const, reduces object code size

Don't populate the arrays res_x and resy_y on the stack, instead make them
static const.  Makes the object code smaller by over 160 bytes:

Before:
   text    data     bss     dec     hex filename
  10509    2800      64   13373    343d ov9640.o

After:
   text    data     bss     dec     hex filename
  10184    2960      64   13208    3398 ov9640.o

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Hans Verkuil <hansverk@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/i2c/soc_camera/ov9640.c