* [PATCH 1/3] staging: iio: ad7606_par: Remove redundant platform_set_drvdata()
@ 2013-06-06 9:27 Sachin Kamat
2013-06-06 9:27 ` [PATCH 2/3] staging: iio: spear_adc: " Sachin Kamat
2013-06-06 9:27 ` [PATCH 3/3] staging: iio: lpc32xx_adc: " Sachin Kamat
0 siblings, 2 replies; 6+ messages in thread
From: Sachin Kamat @ 2013-06-06 9:27 UTC (permalink / raw)
To: devel; +Cc: linux-iio, gregkh, jic23, sachin.kamat, Michael Hennerich
Commit 0998d06310 (device-core: Ensure drvdata = NULL when no
driver is bound) removes the need to set driver data field to
NULL.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: Michael Hennerich <hennerich@blackfin.uclinux.org>
---
drivers/staging/iio/adc/ad7606_par.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/drivers/staging/iio/adc/ad7606_par.c b/drivers/staging/iio/adc/ad7606_par.c
index 58cfdde..8a48d18 100644
--- a/drivers/staging/iio/adc/ad7606_par.c
+++ b/drivers/staging/iio/adc/ad7606_par.c
@@ -112,8 +112,6 @@ static int ad7606_par_remove(struct platform_device *pdev)
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
release_mem_region(res->start, resource_size(res));
- platform_set_drvdata(pdev, NULL);
-
return 0;
}
--
1.7.9.5
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 2/3] staging: iio: spear_adc: Remove redundant platform_set_drvdata()
2013-06-06 9:27 [PATCH 1/3] staging: iio: ad7606_par: Remove redundant platform_set_drvdata() Sachin Kamat
@ 2013-06-06 9:27 ` Sachin Kamat
2013-06-06 9:51 ` Stefan Roese
2013-06-06 9:27 ` [PATCH 3/3] staging: iio: lpc32xx_adc: " Sachin Kamat
1 sibling, 1 reply; 6+ messages in thread
From: Sachin Kamat @ 2013-06-06 9:27 UTC (permalink / raw)
To: devel; +Cc: linux-iio, gregkh, jic23, sachin.kamat, Stefan Roese
Commit 0998d06310 (device-core: Ensure drvdata = NULL when no
driver is bound) removes the need to set driver data field to
NULL.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: Stefan Roese <sr@denx.de>
---
drivers/staging/iio/adc/spear_adc.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/staging/iio/adc/spear_adc.c b/drivers/staging/iio/adc/spear_adc.c
index f45da42..25a06cb 100644
--- a/drivers/staging/iio/adc/spear_adc.c
+++ b/drivers/staging/iio/adc/spear_adc.c
@@ -407,7 +407,6 @@ static int spear_adc_remove(struct platform_device *pdev)
struct spear_adc_info *info = iio_priv(iodev);
iio_device_unregister(iodev);
- platform_set_drvdata(pdev, NULL);
clk_disable_unprepare(info->clk);
clk_put(info->clk);
iounmap(info->adc_base_spear6xx);
--
1.7.9.5
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 3/3] staging: iio: lpc32xx_adc: Remove redundant platform_set_drvdata()
2013-06-06 9:27 [PATCH 1/3] staging: iio: ad7606_par: Remove redundant platform_set_drvdata() Sachin Kamat
2013-06-06 9:27 ` [PATCH 2/3] staging: iio: spear_adc: " Sachin Kamat
@ 2013-06-06 9:27 ` Sachin Kamat
2013-06-06 15:10 ` Roland Stigge
1 sibling, 1 reply; 6+ messages in thread
From: Sachin Kamat @ 2013-06-06 9:27 UTC (permalink / raw)
To: devel; +Cc: linux-iio, gregkh, jic23, sachin.kamat, Roland Stigge
Commit 0998d06310 (device-core: Ensure drvdata = NULL when no
driver is bound) removes the need to set driver data field to
NULL.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: Roland Stigge <stigge@antcom.de>
---
drivers/staging/iio/adc/lpc32xx_adc.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/staging/iio/adc/lpc32xx_adc.c b/drivers/staging/iio/adc/lpc32xx_adc.c
index 2f2f7fd..9a4bb09 100644
--- a/drivers/staging/iio/adc/lpc32xx_adc.c
+++ b/drivers/staging/iio/adc/lpc32xx_adc.c
@@ -215,7 +215,6 @@ static int lpc32xx_adc_remove(struct platform_device *pdev)
iio_device_unregister(iodev);
free_irq(irq, info);
- platform_set_drvdata(pdev, NULL);
clk_put(info->clk);
iounmap(info->adc_base);
iio_device_free(iodev);
--
1.7.9.5
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 2/3] staging: iio: spear_adc: Remove redundant platform_set_drvdata()
2013-06-06 9:27 ` [PATCH 2/3] staging: iio: spear_adc: " Sachin Kamat
@ 2013-06-06 9:51 ` Stefan Roese
0 siblings, 0 replies; 6+ messages in thread
From: Stefan Roese @ 2013-06-06 9:51 UTC (permalink / raw)
To: Sachin Kamat; +Cc: devel, linux-iio, gregkh, jic23
On 06/06/2013 11:27 AM, Sachin Kamat wrote:
> Commit 0998d06310 (device-core: Ensure drvdata = NULL when no
> driver is bound) removes the need to set driver data field to
> NULL.
>
> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
> Cc: Stefan Roese <sr@denx.de>
Acked-by: Stefan Roese <sr@denx.de>
Thanks,
Stefan
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 3/3] staging: iio: lpc32xx_adc: Remove redundant platform_set_drvdata()
2013-06-06 9:27 ` [PATCH 3/3] staging: iio: lpc32xx_adc: " Sachin Kamat
@ 2013-06-06 15:10 ` Roland Stigge
2013-06-06 18:49 ` Jonathan Cameron
0 siblings, 1 reply; 6+ messages in thread
From: Roland Stigge @ 2013-06-06 15:10 UTC (permalink / raw)
To: Sachin Kamat; +Cc: devel, linux-iio, gregkh, jic23
On 06/06/2013 11:27 AM, Sachin Kamat wrote:
> Commit 0998d06310 (device-core: Ensure drvdata = NULL when no
> driver is bound) removes the need to set driver data field to
> NULL.
>
> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
> Cc: Roland Stigge <stigge@antcom.de>
Tested-by: Roland Stigge <stigge@antcom.de>
Acked-by: Roland Stigge <stigge@antcom.de>
Thanks!
> ---
> drivers/staging/iio/adc/lpc32xx_adc.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/drivers/staging/iio/adc/lpc32xx_adc.c b/drivers/staging/iio/adc/lpc32xx_adc.c
> index 2f2f7fd..9a4bb09 100644
> --- a/drivers/staging/iio/adc/lpc32xx_adc.c
> +++ b/drivers/staging/iio/adc/lpc32xx_adc.c
> @@ -215,7 +215,6 @@ static int lpc32xx_adc_remove(struct platform_device *pdev)
>
> iio_device_unregister(iodev);
> free_irq(irq, info);
> - platform_set_drvdata(pdev, NULL);
> clk_put(info->clk);
> iounmap(info->adc_base);
> iio_device_free(iodev);
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 3/3] staging: iio: lpc32xx_adc: Remove redundant platform_set_drvdata()
2013-06-06 15:10 ` Roland Stigge
@ 2013-06-06 18:49 ` Jonathan Cameron
0 siblings, 0 replies; 6+ messages in thread
From: Jonathan Cameron @ 2013-06-06 18:49 UTC (permalink / raw)
To: Roland Stigge; +Cc: Sachin Kamat, devel, linux-iio, gregkh, jic23
On 06/06/2013 04:10 PM, Roland Stigge wrote:
> On 06/06/2013 11:27 AM, Sachin Kamat wrote:
>> Commit 0998d06310 (device-core: Ensure drvdata = NULL when no
>> driver is bound) removes the need to set driver data field to
>> NULL.
>>
>> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
>> Cc: Roland Stigge <stigge@antcom.de>
>
> Tested-by: Roland Stigge <stigge@antcom.de>
> Acked-by: Roland Stigge <stigge@antcom.de>
>
All 3 applied to the togreg branch of iio.git
Thanks
> Thanks!
>
>> ---
>> drivers/staging/iio/adc/lpc32xx_adc.c | 1 -
>> 1 file changed, 1 deletion(-)
>>
>> diff --git a/drivers/staging/iio/adc/lpc32xx_adc.c b/drivers/staging/iio/adc/lpc32xx_adc.c
>> index 2f2f7fd..9a4bb09 100644
>> --- a/drivers/staging/iio/adc/lpc32xx_adc.c
>> +++ b/drivers/staging/iio/adc/lpc32xx_adc.c
>> @@ -215,7 +215,6 @@ static int lpc32xx_adc_remove(struct platform_device *pdev)
>>
>> iio_device_unregister(iodev);
>> free_irq(irq, info);
>> - platform_set_drvdata(pdev, NULL);
>> clk_put(info->clk);
>> iounmap(info->adc_base);
>> iio_device_free(iodev);
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-iio" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2013-06-06 18:49 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-06 9:27 [PATCH 1/3] staging: iio: ad7606_par: Remove redundant platform_set_drvdata() Sachin Kamat
2013-06-06 9:27 ` [PATCH 2/3] staging: iio: spear_adc: " Sachin Kamat
2013-06-06 9:51 ` Stefan Roese
2013-06-06 9:27 ` [PATCH 3/3] staging: iio: lpc32xx_adc: " Sachin Kamat
2013-06-06 15:10 ` Roland Stigge
2013-06-06 18:49 ` Jonathan Cameron
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).