* [PATCH v2] iio: light: tsl2583: Fix module unloading
@ 2022-08-26 12:23 Shreeya Patel
2022-08-28 16:33 ` Jonathan Cameron
0 siblings, 1 reply; 5+ messages in thread
From: Shreeya Patel @ 2022-08-26 12:23 UTC (permalink / raw)
To: jic23, lars
Cc: krisman, dmitry.osipenko, kernel, linux-iio, linux-kernel,
Shreeya Patel, stable
tsl2583 uses devm_iio_device_register() function and
calling iio_device_unregister() in remove breaks the
module unloading.
Fix this by using iio_device_register() instead of
devm_iio_device_register() function in probe.
Cc: stable@vger.kernel.org
Fixes: 371894f5d1a0 ("iio: tsl2583: add runtime power management support")
Signed-off-by: Shreeya Patel <shreeya.patel@collabora.com>
---
Changes in v2
- Use iio_device_register() instead of devm_iio_device_register()
- Add fixes and stable tags
drivers/iio/light/tsl2583.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/iio/light/tsl2583.c b/drivers/iio/light/tsl2583.c
index 82662dab87c0..94d75ec687c3 100644
--- a/drivers/iio/light/tsl2583.c
+++ b/drivers/iio/light/tsl2583.c
@@ -858,7 +858,7 @@ static int tsl2583_probe(struct i2c_client *clientp,
TSL2583_POWER_OFF_DELAY_MS);
pm_runtime_use_autosuspend(&clientp->dev);
- ret = devm_iio_device_register(indio_dev->dev.parent, indio_dev);
+ ret = iio_device_register(indio_dev);
if (ret) {
dev_err(&clientp->dev, "%s: iio registration failed\n",
__func__);
--
2.30.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH v2] iio: light: tsl2583: Fix module unloading
2022-08-26 12:23 [PATCH v2] iio: light: tsl2583: Fix module unloading Shreeya Patel
@ 2022-08-28 16:33 ` Jonathan Cameron
2022-08-31 13:50 ` Shreeya Patel
2022-09-08 18:55 ` Shreeya Patel
0 siblings, 2 replies; 5+ messages in thread
From: Jonathan Cameron @ 2022-08-28 16:33 UTC (permalink / raw)
To: Shreeya Patel
Cc: lars, krisman, dmitry.osipenko, kernel, linux-iio, linux-kernel,
stable
On Fri, 26 Aug 2022 17:53:52 +0530
Shreeya Patel <shreeya.patel@collabora.com> wrote:
> tsl2583 uses devm_iio_device_register() function and
> calling iio_device_unregister() in remove breaks the
> module unloading.
> Fix this by using iio_device_register() instead of
> devm_iio_device_register() function in probe.
Not sure why you are wrapping at 55 chars. I rewrapped this whilst applying.
Reworded it a little too as I was touching it anyway.
Applied to the fixes-togreg branch of iio.git.
>
> Cc: stable@vger.kernel.org
> Fixes: 371894f5d1a0 ("iio: tsl2583: add runtime power management support")
I took a look at this patch and it introduces the issue I just pointed
out in replying to your v1 by dropping the
/* Make sure the chip is on */
Which was correct even with runtime pm because it covered the case of
runtime_pm being disabled. We probably need to bring that back as well,
perhaps as part of a cleanup patch taking this fully devm_
This driver has another issue for working if runtime PM isn't built into
the kernel which is that it checks the return of pm_runtime_put_autosuspend()
which calls
static inline int __pm_runtime_suspend(struct device *dev, int rpmflags)
{
return -ENOSYS;
}
I've been meaning to do an audit for drivers that have this problem for
a while, but not yet gotten to it.
An ideal IIO driver needs to work correctly whether or not CONFIG_PM is
enabled.
Jonathan
> Signed-off-by: Shreeya Patel <shreeya.patel@collabora.com>
> ---
> Changes in v2
> - Use iio_device_register() instead of devm_iio_device_register()
> - Add fixes and stable tags
>
> drivers/iio/light/tsl2583.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/iio/light/tsl2583.c b/drivers/iio/light/tsl2583.c
> index 82662dab87c0..94d75ec687c3 100644
> --- a/drivers/iio/light/tsl2583.c
> +++ b/drivers/iio/light/tsl2583.c
> @@ -858,7 +858,7 @@ static int tsl2583_probe(struct i2c_client *clientp,
> TSL2583_POWER_OFF_DELAY_MS);
> pm_runtime_use_autosuspend(&clientp->dev);
>
> - ret = devm_iio_device_register(indio_dev->dev.parent, indio_dev);
> + ret = iio_device_register(indio_dev);
> if (ret) {
> dev_err(&clientp->dev, "%s: iio registration failed\n",
> __func__);
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2] iio: light: tsl2583: Fix module unloading
2022-08-28 16:33 ` Jonathan Cameron
@ 2022-08-31 13:50 ` Shreeya Patel
2022-09-08 18:55 ` Shreeya Patel
1 sibling, 0 replies; 5+ messages in thread
From: Shreeya Patel @ 2022-08-31 13:50 UTC (permalink / raw)
To: Jonathan Cameron
Cc: lars, krisman, dmitry.osipenko, kernel, linux-iio, linux-kernel,
stable
On 28/08/22 22:03, Jonathan Cameron wrote:
> On Fri, 26 Aug 2022 17:53:52 +0530
> Shreeya Patel <shreeya.patel@collabora.com> wrote:
>
>> tsl2583 uses devm_iio_device_register() function and
>> calling iio_device_unregister() in remove breaks the
>> module unloading.
>> Fix this by using iio_device_register() instead of
>> devm_iio_device_register() function in probe.
> Not sure why you are wrapping at 55 chars. I rewrapped this whilst applying.
>
> Reworded it a little too as I was touching it anyway.
>
> Applied to the fixes-togreg branch of iio.git.
>
>> Cc: stable@vger.kernel.org
>> Fixes: 371894f5d1a0 ("iio: tsl2583: add runtime power management support")
> I took a look at this patch and it introduces the issue I just pointed
> out in replying to your v1 by dropping the
> /* Make sure the chip is on */
> Which was correct even with runtime pm because it covered the case of
> runtime_pm being disabled. We probably need to bring that back as well,
> perhaps as part of a cleanup patch taking this fully devm_
Hi Jonathan,
I can work on fixing some of the issues with this driver in my free time.
Thanks for taking a look at the patch and letting me know.
FYI, I am also planning to work on ADT7316 driver to move out of staging.
I have the adt7516 eval board with me which I'll be using for testing.
Thanks,
Shreeya Patel
> This driver has another issue for working if runtime PM isn't built into
> the kernel which is that it checks the return of pm_runtime_put_autosuspend()
> which calls
>
> static inline int __pm_runtime_suspend(struct device *dev, int rpmflags)
> {
> return -ENOSYS;
> }
>
> I've been meaning to do an audit for drivers that have this problem for
> a while, but not yet gotten to it.
>
> An ideal IIO driver needs to work correctly whether or not CONFIG_PM is
> enabled.
>
> Jonathan
>
>
>> Signed-off-by: Shreeya Patel <shreeya.patel@collabora.com>
>> ---
>> Changes in v2
>> - Use iio_device_register() instead of devm_iio_device_register()
>> - Add fixes and stable tags
>>
>> drivers/iio/light/tsl2583.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/iio/light/tsl2583.c b/drivers/iio/light/tsl2583.c
>> index 82662dab87c0..94d75ec687c3 100644
>> --- a/drivers/iio/light/tsl2583.c
>> +++ b/drivers/iio/light/tsl2583.c
>> @@ -858,7 +858,7 @@ static int tsl2583_probe(struct i2c_client *clientp,
>> TSL2583_POWER_OFF_DELAY_MS);
>> pm_runtime_use_autosuspend(&clientp->dev);
>>
>> - ret = devm_iio_device_register(indio_dev->dev.parent, indio_dev);
>> + ret = iio_device_register(indio_dev);
>> if (ret) {
>> dev_err(&clientp->dev, "%s: iio registration failed\n",
>> __func__);
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2] iio: light: tsl2583: Fix module unloading
2022-08-28 16:33 ` Jonathan Cameron
2022-08-31 13:50 ` Shreeya Patel
@ 2022-09-08 18:55 ` Shreeya Patel
2022-09-11 9:58 ` Jonathan Cameron
1 sibling, 1 reply; 5+ messages in thread
From: Shreeya Patel @ 2022-09-08 18:55 UTC (permalink / raw)
To: Jonathan Cameron
Cc: lars, krisman, dmitry.osipenko, kernel, linux-iio, linux-kernel,
stable
On 28/08/22 22:03, Jonathan Cameron wrote:
> On Fri, 26 Aug 2022 17:53:52 +0530
> Shreeya Patel <shreeya.patel@collabora.com> wrote:
>
>> tsl2583 uses devm_iio_device_register() function and
>> calling iio_device_unregister() in remove breaks the
>> module unloading.
>> Fix this by using iio_device_register() instead of
>> devm_iio_device_register() function in probe.
> Not sure why you are wrapping at 55 chars. I rewrapped this whilst applying.
>
> Reworded it a little too as I was touching it anyway.
>
> Applied to the fixes-togreg branch of iio.git.
Hi Jonathan,
I was wondering if this got picked by you. I don't see it in
fixes-togreg that's why wanted to just confirm if you aren't looking for
some extra changes in this.
Thanks
Shreeya Patel
>
>> Cc: stable@vger.kernel.org
>> Fixes: 371894f5d1a0 ("iio: tsl2583: add runtime power management support")
> I took a look at this patch and it introduces the issue I just pointed
> out in replying to your v1 by dropping the
> /* Make sure the chip is on */
> Which was correct even with runtime pm because it covered the case of
> runtime_pm being disabled. We probably need to bring that back as well,
> perhaps as part of a cleanup patch taking this fully devm_
>
> This driver has another issue for working if runtime PM isn't built into
> the kernel which is that it checks the return of pm_runtime_put_autosuspend()
> which calls
>
> static inline int __pm_runtime_suspend(struct device *dev, int rpmflags)
> {
> return -ENOSYS;
> }
>
> I've been meaning to do an audit for drivers that have this problem for
> a while, but not yet gotten to it.
>
> An ideal IIO driver needs to work correctly whether or not CONFIG_PM is
> enabled.
>
> Jonathan
>
>
>> Signed-off-by: Shreeya Patel <shreeya.patel@collabora.com>
>> ---
>> Changes in v2
>> - Use iio_device_register() instead of devm_iio_device_register()
>> - Add fixes and stable tags
>>
>> drivers/iio/light/tsl2583.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/iio/light/tsl2583.c b/drivers/iio/light/tsl2583.c
>> index 82662dab87c0..94d75ec687c3 100644
>> --- a/drivers/iio/light/tsl2583.c
>> +++ b/drivers/iio/light/tsl2583.c
>> @@ -858,7 +858,7 @@ static int tsl2583_probe(struct i2c_client *clientp,
>> TSL2583_POWER_OFF_DELAY_MS);
>> pm_runtime_use_autosuspend(&clientp->dev);
>>
>> - ret = devm_iio_device_register(indio_dev->dev.parent, indio_dev);
>> + ret = iio_device_register(indio_dev);
>> if (ret) {
>> dev_err(&clientp->dev, "%s: iio registration failed\n",
>> __func__);
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2] iio: light: tsl2583: Fix module unloading
2022-09-08 18:55 ` Shreeya Patel
@ 2022-09-11 9:58 ` Jonathan Cameron
0 siblings, 0 replies; 5+ messages in thread
From: Jonathan Cameron @ 2022-09-11 9:58 UTC (permalink / raw)
To: Shreeya Patel
Cc: lars, krisman, dmitry.osipenko, kernel, linux-iio, linux-kernel,
stable
On Fri, 9 Sep 2022 00:25:49 +0530
Shreeya Patel <shreeya.patel@collabora.com> wrote:
> On 28/08/22 22:03, Jonathan Cameron wrote:
> > On Fri, 26 Aug 2022 17:53:52 +0530
> > Shreeya Patel <shreeya.patel@collabora.com> wrote:
> >
> >> tsl2583 uses devm_iio_device_register() function and
> >> calling iio_device_unregister() in remove breaks the
> >> module unloading.
> >> Fix this by using iio_device_register() instead of
> >> devm_iio_device_register() function in probe.
> > Not sure why you are wrapping at 55 chars. I rewrapped this whilst applying.
> >
> > Reworded it a little too as I was touching it anyway.
> >
> > Applied to the fixes-togreg branch of iio.git.
>
> Hi Jonathan,
>
> I was wondering if this got picked by you. I don't see it in
> fixes-togreg that's why wanted to just confirm if you aren't looking for
> some extra changes in this.
>
>
oops. I forgot to push that branch out. Done so now.
Jonathan
> Thanks
> Shreeya Patel
>
> >
> >> Cc: stable@vger.kernel.org
> >> Fixes: 371894f5d1a0 ("iio: tsl2583: add runtime power management support")
> > I took a look at this patch and it introduces the issue I just pointed
> > out in replying to your v1 by dropping the
> > /* Make sure the chip is on */
> > Which was correct even with runtime pm because it covered the case of
> > runtime_pm being disabled. We probably need to bring that back as well,
> > perhaps as part of a cleanup patch taking this fully devm_
> >
> > This driver has another issue for working if runtime PM isn't built into
> > the kernel which is that it checks the return of pm_runtime_put_autosuspend()
> > which calls
> >
> > static inline int __pm_runtime_suspend(struct device *dev, int rpmflags)
> > {
> > return -ENOSYS;
> > }
> >
> > I've been meaning to do an audit for drivers that have this problem for
> > a while, but not yet gotten to it.
> >
> > An ideal IIO driver needs to work correctly whether or not CONFIG_PM is
> > enabled.
> >
> > Jonathan
> >
> >
> >> Signed-off-by: Shreeya Patel <shreeya.patel@collabora.com>
> >> ---
> >> Changes in v2
> >> - Use iio_device_register() instead of devm_iio_device_register()
> >> - Add fixes and stable tags
> >>
> >> drivers/iio/light/tsl2583.c | 2 +-
> >> 1 file changed, 1 insertion(+), 1 deletion(-)
> >>
> >> diff --git a/drivers/iio/light/tsl2583.c b/drivers/iio/light/tsl2583.c
> >> index 82662dab87c0..94d75ec687c3 100644
> >> --- a/drivers/iio/light/tsl2583.c
> >> +++ b/drivers/iio/light/tsl2583.c
> >> @@ -858,7 +858,7 @@ static int tsl2583_probe(struct i2c_client *clientp,
> >> TSL2583_POWER_OFF_DELAY_MS);
> >> pm_runtime_use_autosuspend(&clientp->dev);
> >>
> >> - ret = devm_iio_device_register(indio_dev->dev.parent, indio_dev);
> >> + ret = iio_device_register(indio_dev);
> >> if (ret) {
> >> dev_err(&clientp->dev, "%s: iio registration failed\n",
> >> __func__);
> >
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-09-11 10:33 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-26 12:23 [PATCH v2] iio: light: tsl2583: Fix module unloading Shreeya Patel
2022-08-28 16:33 ` Jonathan Cameron
2022-08-31 13:50 ` Shreeya Patel
2022-09-08 18:55 ` Shreeya Patel
2022-09-11 9:58 ` Jonathan Cameron
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox