spi: cadence: fix platform_get_irq.cocci warning
authorYihao Han <hanyihao@vivo.com>
Thu, 3 Mar 2022 12:50:54 +0000 (04:50 -0800)
committerMark Brown <broonie@kernel.org>
Mon, 7 Mar 2022 13:16:07 +0000 (13:16 +0000)
Remove dev_err() messages after platform_get_irq*() failures.
platform_get_irq() already prints an error.

Generated by: scripts/coccinelle/api/platform_get_irq.cocci

Signed-off-by: Yihao Han <hanyihao@vivo.com>
Link: https://lore.kernel.org/r/20220303125054.3574-1-hanyihao@vivo.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-cadence-xspi.c

index 4bc1b93..3ab19be 100644 (file)
@@ -578,10 +578,8 @@ static int cdns_xspi_probe(struct platform_device *pdev)
        }
 
        cdns_xspi->irq = platform_get_irq(pdev, 0);
-       if (cdns_xspi->irq < 0) {
-               dev_err(dev, "Failed to get IRQ\n");
+       if (cdns_xspi->irq < 0)
                return -ENXIO;
-       }
 
        ret = devm_request_irq(dev, cdns_xspi->irq, cdns_xspi_irq_handler,
                               IRQF_SHARED, pdev->name, cdns_xspi);