[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20070531202440.GD27305@uranus.ravnborg.org>
Date: Thu, 31 May 2007 22:24:40 +0200
From: Sam Ravnborg <sam@...nborg.org>
To: Prarit Bhargava <prarit@...hat.com>, len.brown@...el.com
Cc: Christoph Lameter <clameter@....com>,
"Luck, Tony" <tony.luck@...el.com>,
Randy Dunlap <randy.dunlap@...cle.com>,
David Chinner <dgc@....com>,
Andrew Morton <akpm@...ux-foundation.org>,
lkml <linux-kernel@...r.kernel.org>, linux-ia64@...r.kernel.org
Subject: [PATCH] acpi: fix section mismatch warning in asus_acpi.o
Fix following section mismatch warning in asus_acpi.o:
WARNING: drivers/acpi/asus_acpi.o(.init.text+0xb7): Section mismatch: reference to .exit.text: (after 'init_module')
The exit function is used in the init function during an error codition.
As __exit may be discarded during link-time / run-time this is no good.
Do not mark the exit function __exit.
Signed-off-by: Sam Ravnborg <sam@...nborg.org>
---
Note: This warning is only generated by a local copy of modpost
but it will soon hit upstream.
Sam
diff --git a/drivers/acpi/asus_acpi.c b/drivers/acpi/asus_acpi.c
index b770dea..6d7d415 100644
--- a/drivers/acpi/asus_acpi.c
+++ b/drivers/acpi/asus_acpi.c
@@ -1357,7 +1357,7 @@ static struct backlight_ops asus_backlight_data = {
.update_status = set_brightness_status,
};
-static void __exit asus_acpi_exit(void)
+static void asus_acpi_exit(void)
{
if (asus_backlight_device)
backlight_device_unregister(asus_backlight_device);
-
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