From: Sachin Kamat Date: Wed, 7 Aug 2013 09:30:42 +0000 (-0700) Subject: leds: clevo-mail: Fix incorrect placement of __initdata X-Git-Tag: upstream/snapshot3+hdmi~4322^2~19 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=939086ea552743144bbcb759f19c7e354f720786;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git leds: clevo-mail: 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 Cc: Márton Németh Signed-off-by: Bryan Wu --- diff --git a/drivers/leds/leds-clevo-mail.c b/drivers/leds/leds-clevo-mail.c index 6a8405d..d93e245 100644 --- a/drivers/leds/leds-clevo-mail.c +++ b/drivers/leds/leds-clevo-mail.c @@ -40,7 +40,7 @@ static int __init clevo_mail_led_dmi_callback(const struct dmi_system_id *id) * detected as working, but in reality it is not) as low as * possible. */ -static struct dmi_system_id __initdata clevo_mail_led_dmi_table[] = { +static struct dmi_system_id clevo_mail_led_dmi_table[] __initdata = { { .callback = clevo_mail_led_dmi_callback, .ident = "Clevo D410J",