From: Uwe Kleine-König Date: Tue, 24 Nov 2009 21:07:11 +0000 (+0100) Subject: ARM: S3C: move s3c_pwm_remove to .devexit.text X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=93b0d8c6b67b7d337509a36dbfcdb6d6eac1ef12;p=GitHub%2Fmt8127%2Fandroid_kernel_alcatel_ttab.git ARM: S3C: move s3c_pwm_remove to .devexit.text The function s3c_pwm_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: Russell King Cc: Ben Dooks Cc: Peter Korsgaard Cc: linux-kernel@vger.kernel.org Cc: linux-arm-kernel@lists.infradead.org Signed-off-by: Ben Dooks --- diff --git a/arch/arm/plat-s3c/pwm.c b/arch/arm/plat-s3c/pwm.c index 4fdc5b307fd2..ef019f27b67d 100644 --- a/arch/arm/plat-s3c/pwm.c +++ b/arch/arm/plat-s3c/pwm.c @@ -368,7 +368,7 @@ static int s3c_pwm_probe(struct platform_device *pdev) return ret; } -static int s3c_pwm_remove(struct platform_device *pdev) +static int __devexit s3c_pwm_remove(struct platform_device *pdev) { struct pwm_device *pwm = platform_get_drvdata(pdev);