[<prev] [next>] [day] [month] [year] [list]
Message-ID: <b92cb9ab0910081327u6fb1eex84537620c4aa421b@mail.gmail.com>
Date: Thu, 8 Oct 2009 13:27:53 -0700
From: Mathieu Rondonneau <mathieu.rondonneau@...il.com>
To: mathieu.rondonneau@...il.com, rostedt <rostedt@...dmis.org>,
fweisbec <fweisbec@...il.com>, mingo <mingo@...hat.com>,
linux-kernel <linux-kernel@...r.kernel.org>,
linux-acpi <linux-acpi@...r.kernel.org>, davem@...emloft.net
Subject: [PATH][RESUBMITTING] fixing harmless warning about __cpuinit in
processor_idle.c
fix harmless warnings that causes compiler warning:
WARNING: drivers/acpi/built-in.o(.text+0x21945): Section mismatch in
reference from the function acpi_processor_add() to the function
.cpuinit.text:acpi_processor_power_init()
The function acpi_processor_add() references
the function __cpuinit acpi_processor_power_init().
change files: driver/acpi/processor_idle.c
Signed-off-by: Mathieu Rondonneau <mathieu.rondonneau@...il.com>
---
diff --git a/drivers/acpi/processor_idle.c b/drivers/acpi/processor_idle.c
index bbd066e..166457a 100644
--- a/drivers/acpi/processor_idle.c
+++ b/drivers/acpi/processor_idle.c
@@ -105,7 +105,7 @@ static int set_max_cstate(const struct dmi_system_id *id)
/* Actually this shouldn't be __cpuinitdata, would be better to fix the
callers to only run once -AK */
-static struct dmi_system_id __cpuinitdata processor_power_dmi_table[] = {
+static struct dmi_system_id processor_power_dmi_table[] = {
{ set_max_cstate, "Clevo 5600D", {
DMI_MATCH(DMI_BIOS_VENDOR,"Phoenix Technologies LTD"),
DMI_MATCH(DMI_BIOS_VERSION,"SHE845M0.86C.0013.D.0302131307")},
@@ -1158,7 +1158,7 @@ int acpi_processor_cst_has_changed(struct
acpi_processor *pr)
return ret;
}
-int __cpuinit acpi_processor_power_init(struct acpi_processor *pr,
+int acpi_processor_power_init(struct acpi_processor *pr,
struct acpi_device *device)
{
acpi_status status = 0;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists