* [PATCH v3] iio: adc: at91-sama5d2_adc: remove dead code in `at91_adc_probe`
@ 2023-03-14 7:01 Cheng Ziqiu
[not found] ` <f1afaf48-e884-4902-8cff-41da234df9e9@microchip.com>
0 siblings, 1 reply; 2+ messages in thread
From: Cheng Ziqiu @ 2023-03-14 7:01 UTC (permalink / raw)
To: Eugen Hristev, Jonathan Cameron, Lars-Peter Clausen,
Nicolas Ferre, Alexandre Belloni, Claudiu Beznea
Cc: Cheng Ziqiu, Dongliang Mu, linux-iio, linux-arm-kernel,
linux-kernel
From the comment of platform_get_irq, it only returns non-zero IRQ
number and negative error number, other than zero.
Fix this by removing the if condition.
Signed-off-by: Cheng Ziqiu <chengziqiu@hust.edu.cn>
Reviewed-by: Dongliang Mu <dzm91@hust.edu.cn>
---
v2->v3: Change subject to make it regular.
v1->v2: Change commit message from SoB to Reviewed-by.
drivers/iio/adc/at91-sama5d2_adc.c | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/drivers/iio/adc/at91-sama5d2_adc.c b/drivers/iio/adc/at91-sama5d2_adc.c
index 50d02e5fc6fc..168399092590 100644
--- a/drivers/iio/adc/at91-sama5d2_adc.c
+++ b/drivers/iio/adc/at91-sama5d2_adc.c
@@ -2400,12 +2400,8 @@ static int at91_adc_probe(struct platform_device *pdev)
st->dma_st.phys_addr = res->start;
st->irq = platform_get_irq(pdev, 0);
- if (st->irq <= 0) {
- if (!st->irq)
- st->irq = -ENXIO;
-
+ if (st->irq < 0)
return st->irq;
- }
st->per_clk = devm_clk_get(&pdev->dev, "adc_clk");
if (IS_ERR(st->per_clk))
--
2.34.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 2+ messages in thread[parent not found: <f1afaf48-e884-4902-8cff-41da234df9e9@microchip.com>]
* Re: [PATCH v3] iio: adc: at91-sama5d2_adc: remove dead code in `at91_adc_probe` [not found] ` <f1afaf48-e884-4902-8cff-41da234df9e9@microchip.com> @ 2023-03-18 16:08 ` Jonathan Cameron 0 siblings, 0 replies; 2+ messages in thread From: Jonathan Cameron @ 2023-03-18 16:08 UTC (permalink / raw) To: Claudiu.Beznea Cc: alexandre.belloni, lars, linux-iio, eugen.hristev, linux-kernel, chengziqiu, dzm91, linux-arm-kernel On Tue, 14 Mar 2023 10:12:23 +0000 <Claudiu.Beznea@microchip.com> wrote: > On 14.03.2023 09:01, Cheng Ziqiu wrote: > > EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe > > > >>From the comment of platform_get_irq, it only returns non-zero IRQ > > number and negative error number, other than zero. > > > > Fix this by removing the if condition. > > > > Signed-off-by: Cheng Ziqiu <chengziqiu@hust.edu.cn> > > Reviewed-by: Dongliang Mu <dzm91@hust.edu.cn> > > Reviewed-by: Claudiu Beznea <claudiu.beznea@microchip.com> Applied to the togreg branch of iio.git - initially pushed out as testing for 0-day to take a look at it. Thanks, Jonathan > > > > --- > > v2->v3: Change subject to make it regular. > > v1->v2: Change commit message from SoB to Reviewed-by. > > drivers/iio/adc/at91-sama5d2_adc.c | 6 +----- > > 1 file changed, 1 insertion(+), 5 deletions(-) > > > > diff --git a/drivers/iio/adc/at91-sama5d2_adc.c b/drivers/iio/adc/at91-sama5d2_adc.c > > index 50d02e5fc6fc..168399092590 100644 > > --- a/drivers/iio/adc/at91-sama5d2_adc.c > > +++ b/drivers/iio/adc/at91-sama5d2_adc.c > > @@ -2400,12 +2400,8 @@ static int at91_adc_probe(struct platform_device *pdev) > > st->dma_st.phys_addr = res->start; > > > > st->irq = platform_get_irq(pdev, 0); > > - if (st->irq <= 0) { > > - if (!st->irq) > > - st->irq = -ENXIO; > > - > > + if (st->irq < 0) > > return st->irq; > > - } > > > > st->per_clk = devm_clk_get(&pdev->dev, "adc_clk"); > > if (IS_ERR(st->per_clk)) > > -- > > 2.34.1 > > > _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-03-18 15:54 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-14 7:01 [PATCH v3] iio: adc: at91-sama5d2_adc: remove dead code in `at91_adc_probe` Cheng Ziqiu
[not found] ` <f1afaf48-e884-4902-8cff-41da234df9e9@microchip.com>
2023-03-18 16:08 ` Jonathan Cameron
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox