Commit f375339e authored by Sergei Shtylyov's avatar Sergei Shtylyov Committed by David S. Miller

ravb: propagate platform_get_irq() error upstream

The driver overrides the error returned by platform_get_irq() with -ENODEV
which e.g. precludes the deferred  probing from working. Propagate the real
error code to the driver core instead.
Signed-off-by: default avatarSergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Acked-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 7c5a9461
...@@ -1643,7 +1643,7 @@ static int ravb_probe(struct platform_device *pdev) ...@@ -1643,7 +1643,7 @@ static int ravb_probe(struct platform_device *pdev)
ndev->dma = -1; ndev->dma = -1;
irq = platform_get_irq(pdev, 0); irq = platform_get_irq(pdev, 0);
if (irq < 0) { if (irq < 0) {
error = -ENODEV; error = irq;
goto out_release; goto out_release;
} }
ndev->irq = irq; ndev->irq = irq;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment