regulator: lp872x: make a const array static, makes object smaller
authorColin Ian King <colin.king@canonical.com>
Fri, 16 Oct 2020 22:22:35 +0000 (23:22 +0100)
committerMark Brown <broonie@kernel.org>
Mon, 26 Oct 2020 20:56:58 +0000 (20:56 +0000)
commit390d828f56a602c9201601bff1170d9d2bf5801c
tree3e90553d6c1c78d9412181ba8790e4877caf1fbb
parent01c77cae836a998c4f69fa6349b31121bdaffd0c
regulator: lp872x: make a const array static, makes object smaller

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

Before:
   text    data     bss     dec     hex filename
  18441    4624      64   23129    5a59 drivers/regulator/lp872x.o

After:
   text    data     bss     dec     hex filename
  18316    4720      64   23100    5a3c drivers/regulator/lp872x.o

(gcc version 10.2.0)

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Link: https://lore.kernel.org/r/20201016222235.686981-1-colin.king@canonical.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/regulator/lp872x.c