[PATCH -next] spi: microchip-core: Clean up redundant dev_err_probe()
Conor Dooley
conor at kernel.org
Thu Jul 27 06:34:56 PDT 2023
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 at 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
>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 228 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-riscv/attachments/20230727/b95bd4ab/attachment.sig>
More information about the linux-riscv
mailing list