LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH v2] iio: adc: fsl-imx25-gcq: fix the right check and simplify code
@ 2021-08-02 12:09 Tang Bin
2021-08-08 13:54 ` Jonathan Cameron
0 siblings, 1 reply; 2+ messages in thread
From: Tang Bin @ 2021-08-02 12:09 UTC (permalink / raw)
To: jic23, knaack.h, lars, shawnguo, s.hauer, festevam
Cc: linux-iio, linux-arm-kernel, linux-kernel, Tang Bin, Zhang Shengju
For the function of platform_get_irq(), the example in platform.c is
* int irq = platform_get_irq(pdev, 0);
* if (irq < 0)
* return irq;
the return value of zero is unnecessary to check, so make the right
check and simplify code.
Co-developed-by: Zhang Shengju <zhangshengju@cmss.chinamobile.com>
Signed-off-by: Zhang Shengju <zhangshengju@cmss.chinamobile.com>
Signed-off-by: Tang Bin <tangbin@cmss.chinamobile.com>
---
Changes from v1
- change the code to the original place and make it simple.
- change the commit message.
---
drivers/iio/adc/fsl-imx25-gcq.c | 9 +++------
1 file changed, 3 insertions(+), 6 deletions(-)
diff --git a/drivers/iio/adc/fsl-imx25-gcq.c b/drivers/iio/adc/fsl-imx25-gcq.c
index 8cb51cf7a..2cdf45aa8 100644
--- a/drivers/iio/adc/fsl-imx25-gcq.c
+++ b/drivers/iio/adc/fsl-imx25-gcq.c
@@ -336,14 +336,11 @@ static int mx25_gcq_probe(struct platform_device *pdev)
goto err_vref_disable;
}
- priv->irq = platform_get_irq(pdev, 0);
- if (priv->irq <= 0) {
- ret = priv->irq;
- if (!ret)
- ret = -ENXIO;
+ ret = platform_get_irq(pdev, 0);
+ if (ret < 0)
goto err_clk_unprepare;
- }
+ priv->irq = ret;
ret = request_irq(priv->irq, mx25_gcq_irq, 0, pdev->name, priv);
if (ret) {
dev_err(dev, "Failed requesting IRQ\n");
--
2.20.1.windows.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH v2] iio: adc: fsl-imx25-gcq: fix the right check and simplify code
2021-08-02 12:09 [PATCH v2] iio: adc: fsl-imx25-gcq: fix the right check and simplify code Tang Bin
@ 2021-08-08 13:54 ` Jonathan Cameron
0 siblings, 0 replies; 2+ messages in thread
From: Jonathan Cameron @ 2021-08-08 13:54 UTC (permalink / raw)
To: Tang Bin
Cc: knaack.h, lars, shawnguo, s.hauer, festevam, linux-iio,
linux-arm-kernel, linux-kernel, Zhang Shengju
On Mon, 2 Aug 2021 20:09:29 +0800
Tang Bin <tangbin@cmss.chinamobile.com> wrote:
> For the function of platform_get_irq(), the example in platform.c is
> * int irq = platform_get_irq(pdev, 0);
> * if (irq < 0)
> * return irq;
> the return value of zero is unnecessary to check, so make the right
> check and simplify code.
>
> Co-developed-by: Zhang Shengju <zhangshengju@cmss.chinamobile.com>
> Signed-off-by: Zhang Shengju <zhangshengju@cmss.chinamobile.com>
> Signed-off-by: Tang Bin <tangbin@cmss.chinamobile.com>
Applied. I tweaked the message an title to make it clear this isn't
a fix, but rather a little clean up with no functional affect.
Thanks,
Jonathan
> ---
> Changes from v1
> - change the code to the original place and make it simple.
> - change the commit message.
> ---
> drivers/iio/adc/fsl-imx25-gcq.c | 9 +++------
> 1 file changed, 3 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/iio/adc/fsl-imx25-gcq.c b/drivers/iio/adc/fsl-imx25-gcq.c
> index 8cb51cf7a..2cdf45aa8 100644
> --- a/drivers/iio/adc/fsl-imx25-gcq.c
> +++ b/drivers/iio/adc/fsl-imx25-gcq.c
> @@ -336,14 +336,11 @@ static int mx25_gcq_probe(struct platform_device *pdev)
> goto err_vref_disable;
> }
>
> - priv->irq = platform_get_irq(pdev, 0);
> - if (priv->irq <= 0) {
> - ret = priv->irq;
> - if (!ret)
> - ret = -ENXIO;
> + ret = platform_get_irq(pdev, 0);
> + if (ret < 0)
> goto err_clk_unprepare;
> - }
>
> + priv->irq = ret;
> ret = request_irq(priv->irq, mx25_gcq_irq, 0, pdev->name, priv);
> if (ret) {
> dev_err(dev, "Failed requesting IRQ\n");
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-08-08 13:51 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-02 12:09 [PATCH v2] iio: adc: fsl-imx25-gcq: fix the right check and simplify code Tang Bin
2021-08-08 13:54 ` 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).