leds: lp8501: make several arrays static const
authorColin Ian King <colin.king@canonical.com>
Thu, 24 Aug 2017 13:00:55 +0000 (14:00 +0100)
committerJacek Anaszewski <jacek.anaszewski@gmail.com>
Tue, 29 Aug 2017 19:10:39 +0000 (21:10 +0200)
commit34b558a5ed21ff97186265d0d753a3425744d7eb
tree88f9702b7e960514663c988be02466edb5639bb9
parent85775013ec49b3d114adfbd618d721247bf1b431
leds: lp8501: make several arrays static const

Don't populate the arrays on the stack, instead make them static const.
Makes the object code smaller by 50 bytes:

Before:
   text    data     bss     dec     hex filename
   5058    1552      64    6674    1a12 drivers/leds/leds-lp8501.o

After:
   text    data     bss     dec     hex filename
   4788    1776      64    6628    19e4 drivers/leds/leds-lp8501.o

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Jacek Anaszewski <jacek.anaszewski@gmail.com>
drivers/leds/leds-lp8501.c