Move the static keyword to the front of declarations.
In drivers/leds/leds-lm3532.c for ramp_table, als_avrg_table
and als_imp_table, and in drivers/leds/leds-lm3532.c for
ramp_table.
This will resolve the following compiler warnings that can
be seen when building with warnings enabled (W=1):
drivers/leds/leds-lm3532.c:209:1: warning:
âstaticâ is not at beginning of declaration [-Wold-style-declaration]
drivers/leds/leds-lm3532.c:266:1: warning:
âstaticâ is not at beginning of declaration [-Wold-style-declaration]
drivers/leds/leds-lm3532.c:281:1: warning:
âstaticâ is not at beginning of declaration [-Wold-style-declaration]
drivers/leds/leds-ti-lmu-common.c:14:1: warning:
âstaticâ is not at beginning of declaration [-Wold-style-declaration]
Signed-off-by: Krzysztof Wilczynski <kw@xxxxxxxxx>
---
Related: https://lore.kernel.org/r/20190827233017.GK9987@xxxxxxxxxx
drivers/leds/leds-lm3532.c | 6 +++---
drivers/leds/leds-ti-lmu-common.c | 2 +-