Unverified Commit 142c61a5 authored by Zhu Wang's avatar Zhu Wang Committed by Mark Brown
Browse files

spi: omap2-mcspi: remove redundant dev_err_probe()



When platform_get_irq() is called, the error message has been printed,
so it need not to call dev_err_probe() to print error, we remove the
redundant platform_get_irq().

Signed-off-by: default avatarZhu Wang <wangzhu9@huawei.com>
Link: https://lore.kernel.org/r/20230801135442.255604-1-wangzhu9@huawei.com


Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 4f517745
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -1508,10 +1508,8 @@ static int omap2_mcspi_probe(struct platform_device *pdev)
	}

	status = platform_get_irq(pdev, 0);
	if (status < 0) {
		dev_err_probe(&pdev->dev, status, "no irq resource found\n");
	if (status < 0)
		goto free_master;
	}
	init_completion(&mcspi->txdone);
	status = devm_request_irq(&pdev->dev, status,
				  omap2_mcspi_irq_handler, 0, pdev->name,