Commit d12919bb authored by Tan Zhongjun's avatar Tan Zhongjun Committed by Thierry Reding
Browse files

drm/tegra: Remove superfluous error messages around platform_get_irq()



The platform_get_irq() prints error message telling that interrupt is
missing,hence there is no need to duplicated that message in the
drivers.

Signed-off-by: default avatarTan Zhongjun <tanzhongjun@yulong.com>
Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent ecc583e2
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -467,10 +467,8 @@ static int tegra_dpaux_probe(struct platform_device *pdev)
		return PTR_ERR(dpaux->regs);

	dpaux->irq = platform_get_irq(pdev, 0);
	if (dpaux->irq < 0) {
		dev_err(&pdev->dev, "failed to get IRQ\n");
	if (dpaux->irq < 0)
		return -ENXIO;
	}

	if (!pdev->dev.pm_domain) {
		dpaux->rst = devm_reset_control_get(&pdev->dev, "dpaux");