mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-24 14:45:12 +08:00
spi: cadence: fix platform_get_irq.cocci warning
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>
This commit is contained in:
parent
af524ae5ad
commit
c59dbc642d
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user