diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2014-12-29 15:20:53 -0200 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2015-01-13 23:51:07 +0530 |
commit | 63c72e028a1dd18515c356834d3f9cfce1cd3f51 (patch) | |
tree | dc9a12fdd46d8eda77f562103f7a0e3710713fda | |
parent | 7f24e0ee00d052f1710b68bbf6221cc674eb7a9b (diff) |
dmaengine: imx-sdma: Return a proper error code in platform_get_irq()
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>
-rw-r--r-- | drivers/dma/imx-sdma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/imx-sdma.c b/drivers/dma/imx-sdma.c index 125c326c525f..fc874e53bec4 100644 --- a/drivers/dma/imx-sdma.c +++ b/drivers/dma/imx-sdma.c @@ -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); |