Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1761547AbXEaUX5 (ORCPT ); Thu, 31 May 2007 16:23:57 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1760168AbXEaUXs (ORCPT ); Thu, 31 May 2007 16:23:48 -0400 Received: from pasmtpb.tele.dk ([80.160.77.98]:60638 "EHLO pasmtpB.tele.dk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750947AbXEaUXq (ORCPT ); Thu, 31 May 2007 16:23:46 -0400 Date: Thu, 31 May 2007 22:24:40 +0200 From: Sam Ravnborg To: Prarit Bhargava , len.brown@intel.com Cc: Christoph Lameter , "Luck, Tony" , Randy Dunlap , David Chinner , Andrew Morton , lkml , linux-ia64@vger.kernel.org Subject: [PATCH] acpi: fix section mismatch warning in asus_acpi.o Message-ID: <20070531202440.GD27305@uranus.ravnborg.org> References: <617E1C2C70743745A92448908E030B2A01929DD3@scsmsx411.amr.corp.intel.com> <465EE7BB.4050605@redhat.com> <20070531200446.GA27305@uranus.ravnborg.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070531200446.GA27305@uranus.ravnborg.org> User-Agent: Mutt/1.4.2.1i Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1210 Lines: 33 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 --- 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@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/