projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d2fe725
)
ACPI / EC: Fix incorrect placement of __initdata
author
Sachin Kamat
<sachin.kamat@linaro.org>
Wed, 7 Aug 2013 11:46:55 +0000
(17:16 +0530)
committer
Rafael J. Wysocki
<rafael.j.wysocki@intel.com>
Wed, 7 Aug 2013 21:49:28 +0000
(23:49 +0200)
__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>
drivers/acpi/ec.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/acpi/ec.c
b/drivers/acpi/ec.c
index 80403c1a89f8969919c868e0fb3238e056adb581..34448038724b7f682b91b2bf107adba37f30dde9 100644
(file)
--- 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)
return 0;
}
-static struct dmi_system_id
__initdata ec_dmi_table[]
= {
+static struct dmi_system_id
ec_dmi_table[] __initdata
= {
{
ec_skip_dsdt_scan, "Compal JFL92", {
DMI_MATCH(DMI_BIOS_VENDOR, "COMPAL"),