Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1559157 > unrolled thread

[PATCH] iio: health: afe4403: retrieve a valid iio_dev in suspend/resume

Started byAlison Schofield <amsfield22@gmail.com>
First post2017-01-15 05:00 +0100
Last post2017-01-21 14:20 +0100
Articles 6 — 3 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] iio: health: afe4403: retrieve a valid iio_dev in  suspend/resume Alison Schofield <amsfield22@gmail.com> - 2017-01-15 05:00 +0100
    Re: [PATCH] iio: health: afe4403: retrieve a valid iio_dev in  suspend/resume "Andrew F. Davis" <afd@ti.com> - 2017-01-16 17:50 +0100
      Re: [PATCH] iio: health: afe4403: retrieve a valid iio_dev in  suspend/resume Alison Schofield <amsfield22@gmail.com> - 2017-01-16 19:20 +0100
        Re: [PATCH] iio: health: afe4403: retrieve a valid iio_dev in  suspend/resume "Andrew F. Davis" <afd@ti.com> - 2017-01-16 19:30 +0100
          Re: [PATCH] iio: health: afe4403: retrieve a valid iio_dev in  suspend/resume Alison Schofield <amsfield22@gmail.com> - 2017-01-16 19:40 +0100
      Re: [PATCH] iio: health: afe4403: retrieve a valid iio_dev in  suspend/resume Jonathan Cameron <jic23@kernel.org> - 2017-01-21 14:20 +0100

#1559157 — [PATCH] iio: health: afe4403: retrieve a valid iio_dev in suspend/resume

FromAlison Schofield <amsfield22@gmail.com>
Date2017-01-15 05:00 +0100
Subject[PATCH] iio: health: afe4403: retrieve a valid iio_dev in suspend/resume
Message-ID<sZK94-63T-5@gated-at.bofh.it>
The suspend/resume functions were using dev_to_iio_dev() to get
the iio_dev. That only works on IIO dev's.  Replace it with spi
functions to get the correct iio_dev.

Signed-off-by: Alison Schofield <amsfield22@gmail.com>
---
 drivers/iio/health/afe4403.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/iio/health/afe4403.c b/drivers/iio/health/afe4403.c
index 9a08146..6bb23a4 100644
--- a/drivers/iio/health/afe4403.c
+++ b/drivers/iio/health/afe4403.c
@@ -422,7 +422,7 @@ MODULE_DEVICE_TABLE(of, afe4403_of_match);
 
 static int __maybe_unused afe4403_suspend(struct device *dev)
 {
-	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
+	struct iio_dev *indio_dev = spi_get_drvdata(to_spi_device(dev));
 	struct afe4403_data *afe = iio_priv(indio_dev);
 	int ret;
 
@@ -443,7 +443,7 @@ static int __maybe_unused afe4403_suspend(struct device *dev)
 
 static int __maybe_unused afe4403_resume(struct device *dev)
 {
-	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
+	struct iio_dev *indio_dev = spi_get_drvdata(to_spi_device(dev));
 	struct afe4403_data *afe = iio_priv(indio_dev);
 	int ret;
 
-- 
2.1.4

[toc] | [next] | [standalone]


#1559882

From"Andrew F. Davis" <afd@ti.com>
Date2017-01-16 17:50 +0100
Message-ID<t0iDL-30L-11@gated-at.bofh.it>
In reply to#1559157
On 01/14/2017 09:51 PM, Alison Schofield wrote:
> The suspend/resume functions were using dev_to_iio_dev() to get
> the iio_dev. That only works on IIO dev's.  Replace it with spi
> functions to get the correct iio_dev.
> 
> Signed-off-by: Alison Schofield <amsfield22@gmail.com>

Was this found with an automated tool? If not, it might be nice to have
a Coccinelle style check for this. Anyway for this and the afe4404
version patch:

Acked-by: Andrew F. Davis <afd@ti.com>

> ---
>  drivers/iio/health/afe4403.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/iio/health/afe4403.c b/drivers/iio/health/afe4403.c
> index 9a08146..6bb23a4 100644
> --- a/drivers/iio/health/afe4403.c
> +++ b/drivers/iio/health/afe4403.c
> @@ -422,7 +422,7 @@ MODULE_DEVICE_TABLE(of, afe4403_of_match);
>  
>  static int __maybe_unused afe4403_suspend(struct device *dev)
>  {
> -	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
> +	struct iio_dev *indio_dev = spi_get_drvdata(to_spi_device(dev));
>  	struct afe4403_data *afe = iio_priv(indio_dev);
>  	int ret;
>  
> @@ -443,7 +443,7 @@ static int __maybe_unused afe4403_suspend(struct device *dev)
>  
>  static int __maybe_unused afe4403_resume(struct device *dev)
>  {
> -	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
> +	struct iio_dev *indio_dev = spi_get_drvdata(to_spi_device(dev));
>  	struct afe4403_data *afe = iio_priv(indio_dev);
>  	int ret;
>  
> 

[toc] | [prev] | [next] | [standalone]


#1559962

FromAlison Schofield <amsfield22@gmail.com>
Date2017-01-16 19:20 +0100
Message-ID<t0k2R-4bx-1@gated-at.bofh.it>
In reply to#1559882
On Mon, Jan 16, 2017 at 10:38:27AM -0600, Andrew F. Davis wrote:
> On 01/14/2017 09:51 PM, Alison Schofield wrote:
> > The suspend/resume functions were using dev_to_iio_dev() to get
> > the iio_dev. That only works on IIO dev's.  Replace it with spi
> > functions to get the correct iio_dev.
> > 
> > Signed-off-by: Alison Schofield <amsfield22@gmail.com>
> 
> Was this found with an automated tool? If not, it might be nice to have
> a Coccinelle style check for this. Anyway for this and the afe4404
> version patch:
> 
> Acked-by: Andrew F. Davis <afd@ti.com>
> 
Hi Andrew,

Just caught my eye while looking at these drivers for another reason:
they popped up in a cocci scan looking for drivers with regmap and dev
struct in global data. The dev struct may be redundant since it
can be retrieved from regmap.  I'm going to look at that a bit further
and send a patch if appropriate.

Back to dev_to_iio_dev...it's a case of history repeating itself, but
not so often anymore.  I grep'd one more that I'll patch.  So, although
it appears close to extinction, a cocci check would be great.  It would
be even more valuble if worked with a more general check of the IIO
conversion/naming functions that are ripe for misuse.

I'll propose this as an intern task.

If anyone has read this far and wants to chime in with their favorite
misused funcs to add to the todo list...please do.

thanks,
alisons

> > ---
> >  drivers/iio/health/afe4403.c | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/drivers/iio/health/afe4403.c b/drivers/iio/health/afe4403.c
> > index 9a08146..6bb23a4 100644
> > --- a/drivers/iio/health/afe4403.c
> > +++ b/drivers/iio/health/afe4403.c
> > @@ -422,7 +422,7 @@ MODULE_DEVICE_TABLE(of, afe4403_of_match);
> >  
> >  static int __maybe_unused afe4403_suspend(struct device *dev)
> >  {
> > -	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
> > +	struct iio_dev *indio_dev = spi_get_drvdata(to_spi_device(dev));
> >  	struct afe4403_data *afe = iio_priv(indio_dev);
> >  	int ret;
> >  
> > @@ -443,7 +443,7 @@ static int __maybe_unused afe4403_suspend(struct device *dev)
> >  
> >  static int __maybe_unused afe4403_resume(struct device *dev)
> >  {
> > -	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
> > +	struct iio_dev *indio_dev = spi_get_drvdata(to_spi_device(dev));
> >  	struct afe4403_data *afe = iio_priv(indio_dev);
> >  	int ret;
> >  
> > 

[toc] | [prev] | [next] | [standalone]


#1559964

From"Andrew F. Davis" <afd@ti.com>
Date2017-01-16 19:30 +0100
Message-ID<t0kcx-4hf-1@gated-at.bofh.it>
In reply to#1559962
On 01/16/2017 12:10 PM, Alison Schofield wrote:
> On Mon, Jan 16, 2017 at 10:38:27AM -0600, Andrew F. Davis wrote:
>> On 01/14/2017 09:51 PM, Alison Schofield wrote:
>>> The suspend/resume functions were using dev_to_iio_dev() to get
>>> the iio_dev. That only works on IIO dev's.  Replace it with spi
>>> functions to get the correct iio_dev.
>>>
>>> Signed-off-by: Alison Schofield <amsfield22@gmail.com>
>>
>> Was this found with an automated tool? If not, it might be nice to have
>> a Coccinelle style check for this. Anyway for this and the afe4404
>> version patch:
>>
>> Acked-by: Andrew F. Davis <afd@ti.com>
>>
> Hi Andrew,
> 
> Just caught my eye while looking at these drivers for another reason:
> they popped up in a cocci scan looking for drivers with regmap and dev
> struct in global data. The dev struct may be redundant since it
> can be retrieved from regmap.  I'm going to look at that a bit further
> and send a patch if appropriate.
> 

I have seen these patches before, and I always NACK them when I can. My
stance is that just because we can find creative ways to recover
information doesn't mean we should. It doesn't and anything and it is
much more clear to me to just keep a copy of *dev to reference when
needed, rather than some round-about method of fetching it through other
entities.

> Back to dev_to_iio_dev...it's a case of history repeating itself, but
> not so often anymore.  I grep'd one more that I'll patch.  So, although
> it appears close to extinction, a cocci check would be great.  It would
> be even more valuble if worked with a more general check of the IIO
> conversion/naming functions that are ripe for misuse.
> 

I'm not a huge fan of all these macro tricks to fetch types for this
reason here, we lose visibility into the containing types. Like here we
have a function (dev_to_iio_dev) that goes from dev to iio_dev with no
real compile time way to know if it is the *right* dev type...

> I'll propose this as an intern task.
> 
> If anyone has read this far and wants to chime in with their favorite
> misused funcs to add to the todo list...please do.
> 
> thanks,
> alisons
> 
>>> ---
>>>  drivers/iio/health/afe4403.c | 4 ++--
>>>  1 file changed, 2 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/drivers/iio/health/afe4403.c b/drivers/iio/health/afe4403.c
>>> index 9a08146..6bb23a4 100644
>>> --- a/drivers/iio/health/afe4403.c
>>> +++ b/drivers/iio/health/afe4403.c
>>> @@ -422,7 +422,7 @@ MODULE_DEVICE_TABLE(of, afe4403_of_match);
>>>  
>>>  static int __maybe_unused afe4403_suspend(struct device *dev)
>>>  {
>>> -	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
>>> +	struct iio_dev *indio_dev = spi_get_drvdata(to_spi_device(dev));
>>>  	struct afe4403_data *afe = iio_priv(indio_dev);
>>>  	int ret;
>>>  
>>> @@ -443,7 +443,7 @@ static int __maybe_unused afe4403_suspend(struct device *dev)
>>>  
>>>  static int __maybe_unused afe4403_resume(struct device *dev)
>>>  {
>>> -	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
>>> +	struct iio_dev *indio_dev = spi_get_drvdata(to_spi_device(dev));
>>>  	struct afe4403_data *afe = iio_priv(indio_dev);
>>>  	int ret;
>>>  
>>>

[toc] | [prev] | [next] | [standalone]


#1559968

FromAlison Schofield <amsfield22@gmail.com>
Date2017-01-16 19:40 +0100
Message-ID<t0kme-4kY-5@gated-at.bofh.it>
In reply to#1559964
On Mon, Jan 16, 2017 at 12:22:03PM -0600, Andrew F. Davis wrote:
> On 01/16/2017 12:10 PM, Alison Schofield wrote:
> > On Mon, Jan 16, 2017 at 10:38:27AM -0600, Andrew F. Davis wrote:
> >> On 01/14/2017 09:51 PM, Alison Schofield wrote:
> >>> The suspend/resume functions were using dev_to_iio_dev() to get
> >>> the iio_dev. That only works on IIO dev's.  Replace it with spi
> >>> functions to get the correct iio_dev.
> >>>
> >>> Signed-off-by: Alison Schofield <amsfield22@gmail.com>
> >>
> >> Was this found with an automated tool? If not, it might be nice to have
> >> a Coccinelle style check for this. Anyway for this and the afe4404
> >> version patch:
> >>
> >> Acked-by: Andrew F. Davis <afd@ti.com>
> >>
> > Hi Andrew,
> > 
> > Just caught my eye while looking at these drivers for another reason:
> > they popped up in a cocci scan looking for drivers with regmap and dev
> > struct in global data. The dev struct may be redundant since it
> > can be retrieved from regmap.  I'm going to look at that a bit further
> > and send a patch if appropriate.
> > 
> 
> I have seen these patches before, and I always NACK them when I can. My
> stance is that just because we can find creative ways to recover
> information doesn't mean we should. It doesn't and anything and it is
> much more clear to me to just keep a copy of *dev to reference when
> needed, rather than some round-about method of fetching it through other
> entities.

Thanks for the heads up...removed from queue.
alisons

> 
> > Back to dev_to_iio_dev...it's a case of history repeating itself, but
> > not so often anymore.  I grep'd one more that I'll patch.  So, although
> > it appears close to extinction, a cocci check would be great.  It would
> > be even more valuble if worked with a more general check of the IIO
> > conversion/naming functions that are ripe for misuse.
> > 
> 
> I'm not a huge fan of all these macro tricks to fetch types for this
> reason here, we lose visibility into the containing types. Like here we
> have a function (dev_to_iio_dev) that goes from dev to iio_dev with no
> real compile time way to know if it is the *right* dev type...
> 
> > I'll propose this as an intern task.
> > 
> > If anyone has read this far and wants to chime in with their favorite
> > misused funcs to add to the todo list...please do.
> > 
> > thanks,
> > alisons
> > 
> >>> ---
> >>>  drivers/iio/health/afe4403.c | 4 ++--
> >>>  1 file changed, 2 insertions(+), 2 deletions(-)
> >>>
> >>> diff --git a/drivers/iio/health/afe4403.c b/drivers/iio/health/afe4403.c
> >>> index 9a08146..6bb23a4 100644
> >>> --- a/drivers/iio/health/afe4403.c
> >>> +++ b/drivers/iio/health/afe4403.c
> >>> @@ -422,7 +422,7 @@ MODULE_DEVICE_TABLE(of, afe4403_of_match);
> >>>  
> >>>  static int __maybe_unused afe4403_suspend(struct device *dev)
> >>>  {
> >>> -	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
> >>> +	struct iio_dev *indio_dev = spi_get_drvdata(to_spi_device(dev));
> >>>  	struct afe4403_data *afe = iio_priv(indio_dev);
> >>>  	int ret;
> >>>  
> >>> @@ -443,7 +443,7 @@ static int __maybe_unused afe4403_suspend(struct device *dev)
> >>>  
> >>>  static int __maybe_unused afe4403_resume(struct device *dev)
> >>>  {
> >>> -	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
> >>> +	struct iio_dev *indio_dev = spi_get_drvdata(to_spi_device(dev));
> >>>  	struct afe4403_data *afe = iio_priv(indio_dev);
> >>>  	int ret;
> >>>  
> >>>

[toc] | [prev] | [next] | [standalone]


#1564115

FromJonathan Cameron <jic23@kernel.org>
Date2017-01-21 14:20 +0100
Message-ID<t23Ki-4sh-17@gated-at.bofh.it>
In reply to#1559882
On 16/01/17 16:38, Andrew F. Davis wrote:
> On 01/14/2017 09:51 PM, Alison Schofield wrote:
>> The suspend/resume functions were using dev_to_iio_dev() to get
>> the iio_dev. That only works on IIO dev's.  Replace it with spi
>> functions to get the correct iio_dev.
>>
>> Signed-off-by: Alison Schofield <amsfield22@gmail.com>
> 
> Was this found with an automated tool? If not, it might be nice to have
> a Coccinelle style check for this. Anyway for this and the afe4404
> version patch:
> 
> Acked-by: Andrew F. Davis <afd@ti.com>
Applied to the fixes-togreg branch of iio.git.

Thanks,

Jonathan
> 
>> ---
>>  drivers/iio/health/afe4403.c | 4 ++--
>>  1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/iio/health/afe4403.c b/drivers/iio/health/afe4403.c
>> index 9a08146..6bb23a4 100644
>> --- a/drivers/iio/health/afe4403.c
>> +++ b/drivers/iio/health/afe4403.c
>> @@ -422,7 +422,7 @@ MODULE_DEVICE_TABLE(of, afe4403_of_match);
>>  
>>  static int __maybe_unused afe4403_suspend(struct device *dev)
>>  {
>> -	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
>> +	struct iio_dev *indio_dev = spi_get_drvdata(to_spi_device(dev));
>>  	struct afe4403_data *afe = iio_priv(indio_dev);
>>  	int ret;
>>  
>> @@ -443,7 +443,7 @@ static int __maybe_unused afe4403_suspend(struct device *dev)
>>  
>>  static int __maybe_unused afe4403_resume(struct device *dev)
>>  {
>> -	struct iio_dev *indio_dev = dev_to_iio_dev(dev);
>> +	struct iio_dev *indio_dev = spi_get_drvdata(to_spi_device(dev));
>>  	struct afe4403_data *afe = iio_priv(indio_dev);
>>  	int ret;
>>  
>>
> --
> 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
> 

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web