diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-08-07 07:46:55 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-08-07 17:49:28 -0400 |
commit | 6cef74970186797c45b3add1e73a14aa71d338d1 (patch) | |
tree | f5b58bbf719558a274d5a411144113a3785c4535 /drivers/acpi/ec.c | |
parent | d2fe7251a36012bc552a4c95246d486a8e284043 (diff) |
ACPI / EC: 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>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi/ec.c')
-rw-r--r-- | drivers/acpi/ec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/ec.c b/drivers/acpi/ec.c index 80403c1a89f8..34448038724b 100644 --- a/drivers/acpi/ec.c +++ b/drivers/acpi/ec.c | |||
@@ -948,7 +948,7 @@ static int ec_enlarge_storm_threshold(const struct dmi_system_id *id) | |||
948 | return 0; | 948 | return 0; |
949 | } | 949 | } |
950 | 950 | ||
951 | static struct dmi_system_id __initdata ec_dmi_table[] = { | 951 | static struct dmi_system_id ec_dmi_table[] __initdata = { |
952 | { | 952 | { |
953 | ec_skip_dsdt_scan, "Compal JFL92", { | 953 | ec_skip_dsdt_scan, "Compal JFL92", { |
954 | DMI_MATCH(DMI_BIOS_VENDOR, "COMPAL"), | 954 | DMI_MATCH(DMI_BIOS_VENDOR, "COMPAL"), |