Commit 8ef9fc78 authored by Sachin Kamat's avatar Sachin Kamat Committed by Rafael J. Wysocki

ACPI / processor: 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: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent 6cef7497
...@@ -28,7 +28,7 @@ static int __init set_no_mwait(const struct dmi_system_id *id) ...@@ -28,7 +28,7 @@ static int __init set_no_mwait(const struct dmi_system_id *id)
return 0; return 0;
} }
static struct dmi_system_id __initdata processor_idle_dmi_table[] = { static struct dmi_system_id processor_idle_dmi_table[] __initdata = {
{ {
set_no_mwait, "Extensa 5220", { set_no_mwait, "Extensa 5220", {
DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"), DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment