dmaengine: imx-sdma: Return a proper error code in platform_get_irq()
authorFabio Estevam <fabio.estevam@freescale.com>
Mon, 29 Dec 2014 17:20:53 +0000 (15:20 -0200)
committerVinod Koul <vinod.koul@intel.com>
Tue, 13 Jan 2015 18:21:07 +0000 (23:51 +0530)
There is no need to return a 'fake' value upon platform_get_irq() failure.

Just propagate the real error instead.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
drivers/dma/imx-sdma.c

index 125c326..fc874e5 100644 (file)
@@ -1483,7 +1483,7 @@ static int sdma_probe(struct platform_device *pdev)
 
        irq = platform_get_irq(pdev, 0);
        if (irq < 0)
-               return -EINVAL;
+               return irq;
 
        iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
        sdma->regs = devm_ioremap_resource(&pdev->dev, iores);