[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <b9df5fa10910012215u6f6cbb8w3a8e667aec43dab4@mail.gmail.com>
Date: Fri, 2 Oct 2009 11:15:24 +0600
From: Rakib Mullick <rakib.mullick@...il.com>
To: linux-acpi@...r.kernel.org, LKML <linux-kernel@...r.kernel.org>,
Andrew Morton <akpm@...ux-foundation.org>
Cc: Len Brown <lenb@...nel.org>
Subject: [PATCH] acpi: Annote acpi_processor_add with __cpuinit.
Annote acpi_processor_add with cpuinit since it calls a cpuinit function
acpi_processor_power_init and fixes a section mismatch warning.
We were warned by the following warning:
LD drivers/acpi/processor.o
WARNING: drivers/acpi/processor.o(.text+0x1829): 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().
This is often because acpi_processor_add lacks a __cpuinit
annotation or the annotation of acpi_processor_power_init is wrong.
-------
Signed-off-by: Rakib Mullick <rakib.mullick@...il.com>
--- linus/drivers/acpi/processor_core.c 2009-09-28 12:04:54.000000000 +0600
+++ rakib/drivers/acpi/processor_core.c 2009-09-29 23:21:13.000000000 +0600
@@ -770,7 +770,7 @@ static struct notifier_block acpi_cpu_no
.notifier_call = acpi_cpu_soft_notify,
};
-static int acpi_processor_add(struct acpi_device *device)
+static int __cpuinit acpi_processor_add(struct acpi_device *device)
{
struct acpi_processor *pr = NULL;
int result = 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