mirror of https://gitee.com/openkylin/linux.git
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>
This commit is contained in:
parent
4f6743d5ca
commit
42d1821248
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue