* [PATCH 15/38] move s3c_adc_remove to .devexit.text
[not found] ` <1259096853-18909-14-git-send-email-u.kleine-koenig@pengutronix.de>
@ 2009-11-24 21:07 ` Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 16/38] move s3c_pwm_remove " Uwe Kleine-König
2009-12-03 22:07 ` [PATCH 15/38] move s3c_adc_remove " Ben Dooks
0 siblings, 2 replies; 5+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-arm-kernel
The function s3c_adc_remove is used only wrapped by __devexit_p so define
it using __devexit.
Signed-off-by: Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Cc: Russell King <linux@arm.linux.org.uk>
Acked-By: Ben Dooks <ben@simtec.co.uk>
Cc: Ramax Lo <ramaxlo@gmail.com>
Cc: Nelson Castillo <arhuaco@freaks-unidos.net>
Cc: linux-kernel at vger.kernel.org
Cc: Ben Dooks <ben-linux@fluff.org>
Cc: Alexey Dobriyan <adobriyan@gmail.com>
Cc: Ryan Mallon <ryan@bluewatersys.com>
Cc: linux-arm-kernel at lists.infradead.org
---
arch/arm/plat-s3c24xx/adc.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/arm/plat-s3c24xx/adc.c b/arch/arm/plat-s3c24xx/adc.c
index df47322..ce47627 100644
--- a/arch/arm/plat-s3c24xx/adc.c
+++ b/arch/arm/plat-s3c24xx/adc.c
@@ -365,7 +365,7 @@ static int s3c_adc_probe(struct platform_device *pdev)
return ret;
}
-static int s3c_adc_remove(struct platform_device *pdev)
+static int __devexit s3c_adc_remove(struct platform_device *pdev)
{
struct adc_device *adc = platform_get_drvdata(pdev);
--
1.6.5.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 16/38] move s3c_pwm_remove to .devexit.text
2009-11-24 21:07 ` [PATCH 15/38] move s3c_adc_remove to .devexit.text Uwe Kleine-König
@ 2009-11-24 21:07 ` Uwe Kleine-König
2009-11-25 8:02 ` Peter Korsgaard
2009-12-03 22:07 ` [PATCH 15/38] move s3c_adc_remove " Ben Dooks
1 sibling, 1 reply; 5+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-arm-kernel
The function s3c_pwm_remove is used only wrapped by __devexit_p so define
it using __devexit.
Signed-off-by: Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Cc: Russell King <linux@arm.linux.org.uk>
Cc: Ben Dooks <ben-linux@fluff.org>
Cc: Peter Korsgaard <jacmet@sunsite.dk>
Cc: linux-kernel at vger.kernel.org
Cc: linux-arm-kernel at lists.infradead.org
---
arch/arm/plat-s3c/pwm.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/arm/plat-s3c/pwm.c b/arch/arm/plat-s3c/pwm.c
index 4fdc5b3..ef019f2 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);
--
1.6.5.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 16/38] move s3c_pwm_remove to .devexit.text
2009-11-24 21:07 ` [PATCH 16/38] move s3c_pwm_remove " Uwe Kleine-König
@ 2009-11-25 8:02 ` Peter Korsgaard
0 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2009-11-25 8:02 UTC (permalink / raw)
To: linux-arm-kernel
>>>>> "Uwe" == Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de> writes:
Uwe> The function s3c_pwm_remove is used only wrapped by __devexit_p so define
Uwe> it using __devexit.
Uwe> Signed-off-by: Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de>
Uwe> Acked-by: Sam Ravnborg <sam@ravnborg.org>
Acked-by: Peter Korsgaard <jacmet@sunsite.dk>
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 15/38] move s3c_adc_remove to .devexit.text
2009-11-24 21:07 ` [PATCH 15/38] move s3c_adc_remove to .devexit.text Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 16/38] move s3c_pwm_remove " Uwe Kleine-König
@ 2009-12-03 22:07 ` Ben Dooks
2009-12-03 22:10 ` Uwe Kleine-König
1 sibling, 1 reply; 5+ messages in thread
From: Ben Dooks @ 2009-12-03 22:07 UTC (permalink / raw)
To: linux-arm-kernel
On Tue, Nov 24, 2009 at 10:07:10PM +0100, Uwe Kleine-K?nig wrote:
> The function s3c_adc_remove is used only wrapped by __devexit_p so define
> it using __devexit.
Shall I put these into my tree?
> Signed-off-by: Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de>
> Acked-by: Sam Ravnborg <sam@ravnborg.org>
> Cc: Russell King <linux@arm.linux.org.uk>
> Acked-By: Ben Dooks <ben@simtec.co.uk>
> Cc: Ramax Lo <ramaxlo@gmail.com>
> Cc: Nelson Castillo <arhuaco@freaks-unidos.net>
> Cc: linux-kernel at vger.kernel.org
> Cc: Ben Dooks <ben-linux@fluff.org>
> Cc: Alexey Dobriyan <adobriyan@gmail.com>
> Cc: Ryan Mallon <ryan@bluewatersys.com>
> Cc: linux-arm-kernel at lists.infradead.org
> ---
> arch/arm/plat-s3c24xx/adc.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/arch/arm/plat-s3c24xx/adc.c b/arch/arm/plat-s3c24xx/adc.c
> index df47322..ce47627 100644
> --- a/arch/arm/plat-s3c24xx/adc.c
> +++ b/arch/arm/plat-s3c24xx/adc.c
> @@ -365,7 +365,7 @@ static int s3c_adc_probe(struct platform_device *pdev)
> return ret;
> }
>
> -static int s3c_adc_remove(struct platform_device *pdev)
> +static int __devexit s3c_adc_remove(struct platform_device *pdev)
> {
> struct adc_device *adc = platform_get_drvdata(pdev);
>
> --
> 1.6.5.2
>
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
--
--
Ben
Q: What's a light-year?
A: One-third less calories than a regular year.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 15/38] move s3c_adc_remove to .devexit.text
2009-12-03 22:07 ` [PATCH 15/38] move s3c_adc_remove " Ben Dooks
@ 2009-12-03 22:10 ` Uwe Kleine-König
0 siblings, 0 replies; 5+ messages in thread
From: Uwe Kleine-König @ 2009-12-03 22:10 UTC (permalink / raw)
To: linux-arm-kernel
Hi Ben,
On Thu, Dec 03, 2009 at 10:07:18PM +0000, Ben Dooks wrote:
> On Tue, Nov 24, 2009 at 10:07:10PM +0100, Uwe Kleine-K?nig wrote:
> > The function s3c_adc_remove is used only wrapped by __devexit_p so define
> > it using __devexit.
>
> Shall I put these into my tree?
Yes, I think your's is the right one.
Thanks
Uwe
--
Pengutronix e.K. | Uwe Kleine-K?nig |
Industrial Linux Solutions | http://www.pengutronix.de/ |
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2009-12-03 22:10 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1259096853-18909-1-git-send-email-u.kleine-koenig@pengutronix.de>
[not found] ` <1259096853-18909-2-git-send-email-u.kleine-koenig@pengutronix.de>
[not found] ` <1259096853-18909-3-git-send-email-u.kleine-koenig@pengutronix.de>
[not found] ` <1259096853-18909-4-git-send-email-u.kleine-koenig@pengutronix.de>
[not found] ` <1259096853-18909-5-git-send-email-u.kleine-koenig@pengutronix.de>
[not found] ` <1259096853-18909-6-git-send-email-u.kleine-koenig@pengutronix.de>
[not found] ` <1259096853-18909-7-git-send-email-u.kleine-koenig@pengutronix.de>
[not found] ` <1259096853-18909-8-git-send-email-u.kleine-koenig@pengutronix.de>
[not found] ` <1259096853-18909-9-git-send-email-u.kleine-koenig@pengutronix.de>
[not found] ` <1259096853-18909-10-git-send-email-u.kleine-koenig@pengutronix.de>
[not found] ` <1259096853-18909-11-git-send-email-u.kleine-koenig@pengutronix.de>
[not found] ` <1259096853-18909-12-git-send-email-u.kleine-koenig@pengutronix.de>
[not found] ` <1259096853-18909-13-git-send-email-u.kleine-koenig@pengutronix.de>
[not found] ` <1259096853-18909-14-git-send-email-u.kleine-koenig@pengutronix.de>
2009-11-24 21:07 ` [PATCH 15/38] move s3c_adc_remove to .devexit.text Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 16/38] move s3c_pwm_remove " Uwe Kleine-König
2009-11-25 8:02 ` Peter Korsgaard
2009-12-03 22:07 ` [PATCH 15/38] move s3c_adc_remove " Ben Dooks
2009-12-03 22:10 ` Uwe Kleine-König
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).