Browse Source

usb: chipidea: Propagate the real error code on platform_get_irq() failure

No need to return a 'fake' return value on platform_get_irq() failure.

Just return the error code itself instead.

Signed-off-by: Peter Chen <peter.chen@freescale.com>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Fabio Estevam 11 years ago
parent
commit
42d1821248
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/usb/chipidea/core.c

+ 1 - 1
drivers/usb/chipidea/core.c

@@ -575,7 +575,7 @@ static int ci_hdrc_probe(struct platform_device *pdev)
 	ci->irq = platform_get_irq(pdev, 0);
 	if (ci->irq < 0) {
 		dev_err(dev, "missing IRQ\n");
-		ret = -ENODEV;
+		ret = ci->irq;
 		goto deinit_phy;
 	}