linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] iio: ad_sigma_delta: use unsigned long for timeout
@ 2018-07-23  9:18 Nicholas Mc Guire
  2018-07-26 11:44 ` Ardelean, Alexandru
  0 siblings, 1 reply; 3+ messages in thread
From: Nicholas Mc Guire @ 2018-07-23  9:18 UTC (permalink / raw)
  To: Lars-Peter Clausen
  Cc: Michael Hennerich, Jonathan Cameron, Hartmut Knaack,
	Peter Meerwald-Stadler, linux-iio, linux-kernel,
	Nicholas Mc Guire

wait_for_completion_timeout returns unsigned long not int so an appropriate
variable is declared and the assignment and check fixed up.

Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org>
---

found by experimental coccinelle script

As the timeout returned is always << INT_MAX there is no side-effect with the
type conversion here, never the less proper types should be used.

Patch was compile tested with: x86_64_defconfig + CONFIG_SPI=y, CONFIG_IIO=y,
CONFIG_AD7793=y (implies CONFIG_AD_SIGMA_DELTA=y)

Patch is against 4.18-rc5 (localversion-next is next-20180720)

 drivers/iio/adc/ad_sigma_delta.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/iio/adc/ad_sigma_delta.c b/drivers/iio/adc/ad_sigma_delta.c
index cf1b048..fc95107 100644
--- a/drivers/iio/adc/ad_sigma_delta.c
+++ b/drivers/iio/adc/ad_sigma_delta.c
@@ -209,6 +209,7 @@ static int ad_sd_calibrate(struct ad_sigma_delta *sigma_delta,
 	unsigned int mode, unsigned int channel)
 {
 	int ret;
+	unsigned long timeout;
 
 	ret = ad_sigma_delta_set_channel(sigma_delta, channel);
 	if (ret)
@@ -224,8 +225,8 @@ static int ad_sd_calibrate(struct ad_sigma_delta *sigma_delta,
 
 	sigma_delta->irq_dis = false;
 	enable_irq(sigma_delta->spi->irq);
-	ret = wait_for_completion_timeout(&sigma_delta->completion, 2*HZ);
-	if (ret == 0) {
+	timeout = wait_for_completion_timeout(&sigma_delta->completion, 2 * HZ);
+	if (timeout == 0) {
 		sigma_delta->irq_dis = true;
 		disable_irq_nosync(sigma_delta->spi->irq);
 		ret = -EIO;
-- 
2.1.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] iio: ad_sigma_delta: use unsigned long for timeout
  2018-07-23  9:18 [PATCH] iio: ad_sigma_delta: use unsigned long for timeout Nicholas Mc Guire
@ 2018-07-26 11:44 ` Ardelean, Alexandru
  2018-07-27  6:39   ` Ardelean, Alexandru
  0 siblings, 1 reply; 3+ messages in thread
From: Ardelean, Alexandru @ 2018-07-26 11:44 UTC (permalink / raw)
  To: hofrat, lars
  Cc: knaack.h, linux-kernel, pmeerw, Hennerich, Michael, jic23, linux-iio

On Mon, 2018-07-23 at 11:18 +0200, Nicholas Mc Guire wrote:
> wait_for_completion_timeout returns unsigned long not int so an
> appropriate
> variable is declared and the assignment and check fixed up.
> 

Patch looks good.

Thanks for this

Alex

> Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org>
> ---
> 
> found by experimental coccinelle script
> 
> As the timeout returned is always << INT_MAX there is no side-effect with
> the
> type conversion here, never the less proper types should be used.
> 
> Patch was compile tested with: x86_64_defconfig + CONFIG_SPI=y,
> CONFIG_IIO=y,
> CONFIG_AD7793=y (implies CONFIG_AD_SIGMA_DELTA=y)
> 
> Patch is against 4.18-rc5 (localversion-next is next-20180720)
> 
>  drivers/iio/adc/ad_sigma_delta.c | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/iio/adc/ad_sigma_delta.c
> b/drivers/iio/adc/ad_sigma_delta.c
> index cf1b048..fc95107 100644
> --- a/drivers/iio/adc/ad_sigma_delta.c
> +++ b/drivers/iio/adc/ad_sigma_delta.c
> @@ -209,6 +209,7 @@ static int ad_sd_calibrate(struct ad_sigma_delta
> *sigma_delta,
>  	unsigned int mode, unsigned int channel)
>  {
>  	int ret;
> +	unsigned long timeout;
>  
>  	ret = ad_sigma_delta_set_channel(sigma_delta, channel);
>  	if (ret)
> @@ -224,8 +225,8 @@ static int ad_sd_calibrate(struct ad_sigma_delta
> *sigma_delta,
>  
>  	sigma_delta->irq_dis = false;
>  	enable_irq(sigma_delta->spi->irq);
> -	ret = wait_for_completion_timeout(&sigma_delta->completion,
> 2*HZ);
> -	if (ret == 0) {
> +	timeout = wait_for_completion_timeout(&sigma_delta->completion,
> 2 * HZ);
> +	if (timeout == 0) {
>  		sigma_delta->irq_dis = true;
>  		disable_irq_nosync(sigma_delta->spi->irq);
>  		ret = -EIO;

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] iio: ad_sigma_delta: use unsigned long for timeout
  2018-07-26 11:44 ` Ardelean, Alexandru
@ 2018-07-27  6:39   ` Ardelean, Alexandru
  0 siblings, 0 replies; 3+ messages in thread
From: Ardelean, Alexandru @ 2018-07-27  6:39 UTC (permalink / raw)
  To: hofrat, lars
  Cc: knaack.h, linux-kernel, pmeerw, Hennerich, Michael, jic23, linux-iio

On Thu, 2018-07-26 at 11:44 +0000, Ardelean, Alexandru wrote:
> On Mon, 2018-07-23 at 11:18 +0200, Nicholas Mc Guire wrote:
> > wait_for_completion_timeout returns unsigned long not int so an
> > appropriate
> > variable is declared and the assignment and check fixed up.
> > 
> 
> Patch looks good.
> 
> Thanks for this

[ I forgot to add this ]

Reviewed-by: Alexandru Ardelean <alexandru.ardelean@analog.com>


> 
> Alex
> 
> > Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org>
> > ---
> > 
> > found by experimental coccinelle script
> > 
> > As the timeout returned is always << INT_MAX there is no side-effect
> > with
> > the
> > type conversion here, never the less proper types should be used.
> > 
> > Patch was compile tested with: x86_64_defconfig + CONFIG_SPI=y,
> > CONFIG_IIO=y,
> > CONFIG_AD7793=y (implies CONFIG_AD_SIGMA_DELTA=y)
> > 
> > Patch is against 4.18-rc5 (localversion-next is next-20180720)
> > 
> >  drivers/iio/adc/ad_sigma_delta.c | 5 +++--
> >  1 file changed, 3 insertions(+), 2 deletions(-)
> > 
> > diff --git a/drivers/iio/adc/ad_sigma_delta.c
> > b/drivers/iio/adc/ad_sigma_delta.c
> > index cf1b048..fc95107 100644
> > --- a/drivers/iio/adc/ad_sigma_delta.c
> > +++ b/drivers/iio/adc/ad_sigma_delta.c
> > @@ -209,6 +209,7 @@ static int ad_sd_calibrate(struct ad_sigma_delta
> > *sigma_delta,
> >  	unsigned int mode, unsigned int channel)
> >  {
> >  	int ret;
> > +	unsigned long timeout;
> >  
> >  	ret = ad_sigma_delta_set_channel(sigma_delta, channel);
> >  	if (ret)
> > @@ -224,8 +225,8 @@ static int ad_sd_calibrate(struct ad_sigma_delta
> > *sigma_delta,
> >  
> >  	sigma_delta->irq_dis = false;
> >  	enable_irq(sigma_delta->spi->irq);
> > -	ret = wait_for_completion_timeout(&sigma_delta->completion,
> > 2*HZ);
> > -	if (ret == 0) {
> > +	timeout = wait_for_completion_timeout(&sigma_delta-
> > >completion,
> > 2 * HZ);
> > +	if (timeout == 0) {
> >  		sigma_delta->irq_dis = true;
> >  		disable_irq_nosync(sigma_delta->spi->irq);
> >  		ret =
> > -EIO;N�����r��y���b�X��ǧv�^�)޺{.n�+����{��*"��^n�r���z�\x1a��h����&��\x1e�G��
> > �h�\x03(�階�ݢj"��\x1a�^[m�����z�ޖ���f���h���~�m�

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-07-27  6:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-23  9:18 [PATCH] iio: ad_sigma_delta: use unsigned long for timeout Nicholas Mc Guire
2018-07-26 11:44 ` Ardelean, Alexandru
2018-07-27  6:39   ` Ardelean, Alexandru

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).