]> git.baikalelectronics.ru Git - kernel.git/commit
media: exynos4-is: make array 'cmd' static, shrinks object size
authorColin Ian King <colin.king@canonical.com>
Sat, 6 Jan 2018 16:03:27 +0000 (11:03 -0500)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Tue, 6 Mar 2018 11:05:12 +0000 (06:05 -0500)
commit95a03983c14a3fdb8fd587946ebcd0d31a33a8e9
tree4c024ff4e2a46256c7fbc1bcc48ce8411973f471
parent3fa0d639227f209763d3898a23a25c44cbe95cad
media: exynos4-is: make array 'cmd' static, shrinks object size

Don't populate the const read-only array 'cmd' on the stack but instead
make it static. Makes the object code smaller by 38 bytes:

Before:
   text    data     bss     dec     hex filename
   4950     868       0    5818    16ba fimc-is-regs.o

After:
   text    data     bss     dec     hex filename
   4824     956       0    5780    1694 fimc-is-regs.o

(gcc version 7.2.0 x86_64)

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/platform/exynos4-is/fimc-is-regs.c