aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/leds
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2013-08-07 05:30:43 -0400
committerBryan Wu <cooloney@gmail.com>2013-08-26 20:22:12 -0400
commitb06cf2d7ec51c12eb5f9d191d461bd9c08f2c107 (patch)
tree78194e1866317eaeb97a3cb55358e70c4d0bf624 /drivers/leds
parent939086ea552743144bbcb759f19c7e354f720786 (diff)
leds: ss4200: Fix incorrect placement of __initdata
__initdata should be placed between the variable name and equal sign for the variable to be placed in the intended section. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Cc: Dave Hansen <dave@sr71.net> Signed-off-by: Bryan Wu <cooloney@gmail.com>
Diffstat (limited to 'drivers/leds')
-rw-r--r--drivers/leds/leds-ss4200.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/leds/leds-ss4200.c b/drivers/leds/leds-ss4200.c
index 51bb0ee22b34..5b8f938a8d73 100644
--- a/drivers/leds/leds-ss4200.c
+++ b/drivers/leds/leds-ss4200.c
@@ -91,7 +91,7 @@ MODULE_PARM_DESC(nodetect, "Skip DMI-based hardware detection");
91 * detected as working, but in reality it is not) as low as 91 * detected as working, but in reality it is not) as low as
92 * possible. 92 * possible.
93 */ 93 */
94static struct dmi_system_id __initdata nas_led_whitelist[] = { 94static struct dmi_system_id nas_led_whitelist[] __initdata = {
95 { 95 {
96 .callback = ss4200_led_dmi_callback, 96 .callback = ss4200_led_dmi_callback,
97 .ident = "Intel SS4200-E", 97 .ident = "Intel SS4200-E",