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

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

Before:
   text    data     bss     dec     hex filename
   7725    2448      64   10237    27fd drivers/leds/leds-lp5562.o

After:
   text    data     bss     dec     hex filename
   7184    2832      64   10080    2760 drivers/leds/leds-lp5562.o

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