Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932135AbZJAI2q (ORCPT ); Thu, 1 Oct 2009 04:28:46 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755880AbZJAI2q (ORCPT ); Thu, 1 Oct 2009 04:28:46 -0400 Received: from metis.ext.pengutronix.de ([92.198.50.35]:56462 "EHLO metis.ext.pengutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755844AbZJAI2p (ORCPT ); Thu, 1 Oct 2009 04:28:45 -0400 From: =?UTF-8?q?Uwe=20Kleine-K=C3=B6nig?= To: linux-kernel@vger.kernel.org Cc: Sam Ravnborg , Andrew Morton , Samuel Ortiz , Philipp Zabel , Yinghai Lu , Russell King Subject: [PATCH 01/34] move asic3_remove to .devexit.text Date: Thu, 1 Oct 2009 10:28:05 +0200 Message-Id: <1254385718-14254-1-git-send-email-u.kleine-koenig@pengutronix.de> X-Mailer: git-send-email 1.6.4.3 In-Reply-To: <20091001082607.GA2181@pengutronix.de> References: <20091001082607.GA2181@pengutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-SA-Exim-Connect-IP: 2001:6f8:1178:2:215:17ff:fe12:23b0 X-SA-Exim-Mail-From: ukl@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: linux-kernel@vger.kernel.org Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1170 Lines: 35 The function asic3_remove is used only wrapped by __devexit_p so define it using __devexit. Signed-off-by: Uwe Kleine-König Acked-by: Sam Ravnborg Cc: Samuel Ortiz Cc: Philipp Zabel Cc: Yinghai Lu Cc: Russell King Cc: linux-kernel@vger.kernel.org --- drivers/mfd/asic3.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/mfd/asic3.c b/drivers/mfd/asic3.c index 63a2a66..e22128c 100644 --- a/drivers/mfd/asic3.c +++ b/drivers/mfd/asic3.c @@ -908,7 +908,7 @@ static int __init asic3_probe(struct platform_device *pdev) return ret; } -static int asic3_remove(struct platform_device *pdev) +static int __devexit asic3_remove(struct platform_device *pdev) { int ret; struct asic3 *asic = platform_get_drvdata(pdev); -- 1.6.4.3 -- 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/