diff options
author | Benson Leung <bleung@chromium.org> | 2013-10-20 23:58:26 -0400 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2013-11-25 15:51:15 -0500 |
commit | cdddd23fa2536cd4273e95d66b6ef83e67b747bf (patch) | |
tree | c6ed27dda64c16c31064e5804ad849945887d503 /drivers/platform/chrome | |
parent | 9ad3692458c387eb9537da73b2b75841ed7acdaf (diff) |
platform/chrome: chromeos_laptop - fix incorrect placement of __initdata tag
__initdata tag should be placed between the variable name and equal
sign for the variable to be placed in the intended .init.data section.
Signed-off-by: Benson Leung <bleung@chromium.org>
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'drivers/platform/chrome')
-rw-r--r-- | drivers/platform/chrome/chromeos_laptop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/chrome/chromeos_laptop.c b/drivers/platform/chrome/chromeos_laptop.c index e542330f8048..1c2747f119d1 100644 --- a/drivers/platform/chrome/chromeos_laptop.c +++ b/drivers/platform/chrome/chromeos_laptop.c | |||
@@ -406,7 +406,7 @@ static struct chromeos_laptop cr48 = { | |||
406 | .callback = chromeos_laptop_dmi_matched, \ | 406 | .callback = chromeos_laptop_dmi_matched, \ |
407 | .driver_data = (void *)&board_ | 407 | .driver_data = (void *)&board_ |
408 | 408 | ||
409 | static struct dmi_system_id __initdata chromeos_laptop_dmi_table[] = { | 409 | static struct dmi_system_id chromeos_laptop_dmi_table[] __initdata = { |
410 | { | 410 | { |
411 | .ident = "Samsung Series 5 550", | 411 | .ident = "Samsung Series 5 550", |
412 | .matches = { | 412 | .matches = { |