Commit 0950c7fd authored by Vinod Koul's avatar Vinod Koul
Browse files

dmaengine: uniphier-xdmac: Remove redandant error log for platform_get_irq



platform_get_irq prints the error on failure, so there is no need to
have caller add a log.
Remove the log in uniphier_xdmac_probe() for platform_get_irq() failure

Reported-by: default avatarkbuild test robot <lkp@intel.com>
Link: https://lore.kernel.org/r/20200323171928.424223-1-vkoul@kernel.org


Signed-off-by: default avatarVinod Koul <vkoul@kernel.org>
parent 6697255f
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -525,10 +525,8 @@ static int uniphier_xdmac_probe(struct platform_device *pdev)
		uniphier_xdmac_chan_init(xdev, i);

	irq = platform_get_irq(pdev, 0);
	if (irq < 0) {
		dev_err(dev, "Failed to get IRQ\n");
	if (irq < 0)
		return irq;
	}

	ret = devm_request_irq(dev, irq, uniphier_xdmac_irq_handler,
			       IRQF_SHARED, "xdmac", xdev);