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: kbuild test robot <lkp@intel.com> Link: https://lore.kernel.org/r/20200323171928.424223-1-vkoul@kernel.org Signed-off-by: Vinod Koul <vkoul@kernel.org>
This commit is contained in:
Родитель
6697255f23
Коммит
0950c7fdf7
|
@ -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);
|
||||
|
|
Загрузка…
Ссылка в новой задаче