Re: [PATCH -next] iio: adc: mxs-lradc: Fix return value check in mxs_lradc_adc_probe()

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Wed, 26 Apr 2017, weiyongjun (A) wrote:

> > 
> > On Wed, 26 Apr 2017, Jonathan Cameron wrote:
> > 
> > > On 25/04/17 04:36, Wei Yongjun wrote:
> > > > From: Wei Yongjun <weiyongjun1@xxxxxxxxxx>
> > > >
> > > > In case of error, the function devm_ioremap() returns NULL pointer
> > > > not ERR_PTR(). The IS_ERR() test in the return value check should
> > > > be replaced with NULL test.
> > > >
> > > > Signed-off-by: Wei Yongjun <weiyongjun1@xxxxxxxxxx>
> > > Acked-by: Jonathan Cameron <jic23@xxxxxxxxxx>
> > >
> > > Lee, do you want to pick this up?  If not I'll scoop it up after the merge
> > > window has unwound as a fix.  Needs to be on top of the series:
> > > [PATCH v15 0/5] mxs-lradc: Split driver into MFD
> > 
> > I'm inclined to agree with Dmitry:
> > 
> > https://www.spinics.net/lists/linux-input/msg51061.html
> 
> Not sure we can use devm_ioremap_resource(), if it is safe, I will
> send v2 version patch to use devm_ioremap_resource() instead.

What makes you think it might not be safe?

> > > > ---
> > > >  drivers/iio/adc/mxs-lradc-adc.c | 4 ++--
> > > >  1 file changed, 2 insertions(+), 2 deletions(-)
> > > >
> > > > diff --git a/drivers/iio/adc/mxs-lradc-adc.c b/drivers/iio/adc/mxs-lradc-
> > adc.c
> > > > index b0c7d8e..493e2a2 100644
> > > > --- a/drivers/iio/adc/mxs-lradc-adc.c
> > > > +++ b/drivers/iio/adc/mxs-lradc-adc.c
> > > > @@ -719,8 +719,8 @@ static int mxs_lradc_adc_probe(struct
> > platform_device *pdev)
> > > >
> > > >  	iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> > > >  	adc->base = devm_ioremap(dev, iores->start, resource_size(iores));
> > > > -	if (IS_ERR(adc->base))
> > > > -		return PTR_ERR(adc->base);
> > > > +	if (!adc->base)
> > > > +		return -ENOMEM;
> > > >
> > > >  	init_completion(&adc->completion);
> > > >  	spin_lock_init(&adc->lock);
> > > >
> > >
> > 

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
--
To unsubscribe from this list: send the line "unsubscribe linux-iio" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html



[Index of Archives]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Input]     [Linux Kernel]     [Linux SCSI]     [X.org]

  Powered by Linux