* [PATCH -next] spi: microchip-core: Clean up redundant dev_err_probe()
@ 2023-07-27 13:00 Chen Jiahao
2023-07-27 13:34 ` Conor Dooley
0 siblings, 1 reply; 3+ messages in thread
From: Chen Jiahao @ 2023-07-27 13:00 UTC (permalink / raw)
To: conor.dooley, daire.mcnamara, broonie, linux-riscv, linux-spi
Cc: chenjiahao16
Refering to platform_get_irq()'s definition, the return value has
already been checked if ret < 0, and printed via dev_err_probe().
Calling dev_err_probe() one more time outside platform_get_irq()
is obviously redundant.
Furthermore, platform_get_irq() will never return irq equals 0,
removing spi->irq == 0 checking to clean it up.
Signed-off-by: Chen Jiahao <chenjiahao16@huawei.com>
---
drivers/spi/spi-microchip-core.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/drivers/spi/spi-microchip-core.c b/drivers/spi/spi-microchip-core.c
index b59e8a0c5b97..ac3b7b163db4 100644
--- a/drivers/spi/spi-microchip-core.c
+++ b/drivers/spi/spi-microchip-core.c
@@ -530,10 +530,8 @@ static int mchp_corespi_probe(struct platform_device *pdev)
return PTR_ERR(spi->regs);
spi->irq = platform_get_irq(pdev, 0);
- if (spi->irq <= 0)
- return dev_err_probe(&pdev->dev, -ENXIO,
- "invalid IRQ %d for SPI controller\n",
- spi->irq);
+ if (spi->irq < 0)
+ return -ENXIO;
ret = devm_request_irq(&pdev->dev, spi->irq, mchp_corespi_interrupt,
IRQF_SHARED, dev_name(&pdev->dev), master);
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH -next] spi: microchip-core: Clean up redundant dev_err_probe()
2023-07-27 13:00 [PATCH -next] spi: microchip-core: Clean up redundant dev_err_probe() Chen Jiahao
@ 2023-07-27 13:34 ` Conor Dooley
2023-07-28 7:42 ` chenjiahao (C)
0 siblings, 1 reply; 3+ messages in thread
From: Conor Dooley @ 2023-07-27 13:34 UTC (permalink / raw)
To: Chen Jiahao; +Cc: conor.dooley, daire.mcnamara, broonie, linux-riscv, linux-spi
[-- Attachment #1: Type: text/plain, Size: 1444 bytes --]
On Thu, Jul 27, 2023 at 09:00:49PM +0800, Chen Jiahao wrote:
> Refering to platform_get_irq()'s definition, the return value has
> already been checked if ret < 0, and printed via dev_err_probe().
> Calling dev_err_probe() one more time outside platform_get_irq()
> is obviously redundant.
>
> Furthermore, platform_get_irq() will never return irq equals 0,
> removing spi->irq == 0 checking to clean it up.
>
> Signed-off-by: Chen Jiahao <chenjiahao16@huawei.com>
> ---
> drivers/spi/spi-microchip-core.c | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/spi/spi-microchip-core.c b/drivers/spi/spi-microchip-core.c
> index b59e8a0c5b97..ac3b7b163db4 100644
> --- a/drivers/spi/spi-microchip-core.c
> +++ b/drivers/spi/spi-microchip-core.c
> @@ -530,10 +530,8 @@ static int mchp_corespi_probe(struct platform_device *pdev)
> return PTR_ERR(spi->regs);
>
> spi->irq = platform_get_irq(pdev, 0);
> - if (spi->irq <= 0)
> - return dev_err_probe(&pdev->dev, -ENXIO,
> - "invalid IRQ %d for SPI controller\n",
> - spi->irq);
> + if (spi->irq < 0)
> + return -ENXIO;
platform_get_irq() returns an ERRNO that can now be propagated since
the special case for 0 no longer requires handling, no?
>
> ret = devm_request_irq(&pdev->dev, spi->irq, mchp_corespi_interrupt,
> IRQF_SHARED, dev_name(&pdev->dev), master);
> --
> 2.34.1
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH -next] spi: microchip-core: Clean up redundant dev_err_probe()
2023-07-27 13:34 ` Conor Dooley
@ 2023-07-28 7:42 ` chenjiahao (C)
0 siblings, 0 replies; 3+ messages in thread
From: chenjiahao (C) @ 2023-07-28 7:42 UTC (permalink / raw)
To: Conor Dooley
Cc: conor.dooley, daire.mcnamara, broonie, linux-riscv, linux-spi
On 2023/7/27 21:34, Conor Dooley wrote:
> On Thu, Jul 27, 2023 at 09:00:49PM +0800, Chen Jiahao wrote:
>> Refering to platform_get_irq()'s definition, the return value has
>> already been checked if ret < 0, and printed via dev_err_probe().
>> Calling dev_err_probe() one more time outside platform_get_irq()
>> is obviously redundant.
>>
>> Furthermore, platform_get_irq() will never return irq equals 0,
>> removing spi->irq == 0 checking to clean it up.
>>
>> Signed-off-by: Chen Jiahao <chenjiahao16@huawei.com>
>> ---
>> drivers/spi/spi-microchip-core.c | 6 ++----
>> 1 file changed, 2 insertions(+), 4 deletions(-)
>>
>> diff --git a/drivers/spi/spi-microchip-core.c b/drivers/spi/spi-microchip-core.c
>> index b59e8a0c5b97..ac3b7b163db4 100644
>> --- a/drivers/spi/spi-microchip-core.c
>> +++ b/drivers/spi/spi-microchip-core.c
>> @@ -530,10 +530,8 @@ static int mchp_corespi_probe(struct platform_device *pdev)
>> return PTR_ERR(spi->regs);
>>
>> spi->irq = platform_get_irq(pdev, 0);
>> - if (spi->irq <= 0)
>> - return dev_err_probe(&pdev->dev, -ENXIO,
>> - "invalid IRQ %d for SPI controller\n",
>> - spi->irq);
>> + if (spi->irq < 0)
>> + return -ENXIO;
> platform_get_irq() returns an ERRNO that can now be propagated since
> the special case for 0 no longer requires handling, no?
Sure, you are right. Here we should directly return the ERRNO passed
from platform_get_irq(), since platform_get_irq() has performed all
error checking inside.
Thanks for reminding.
Jiahao
>
>>
>> ret = devm_request_irq(&pdev->dev, spi->irq, mchp_corespi_interrupt,
>> IRQF_SHARED, dev_name(&pdev->dev), master);
>> --
>> 2.34.1
>>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-07-28 7:42 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-27 13:00 [PATCH -next] spi: microchip-core: Clean up redundant dev_err_probe() Chen Jiahao
2023-07-27 13:34 ` Conor Dooley
2023-07-28 7:42 ` chenjiahao (C)
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).