diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2014-12-29 12:20:53 -0500 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2015-01-13 13:21:07 -0500 |
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) | |||
1483 | 1483 | ||
1484 | irq = platform_get_irq(pdev, 0); | 1484 | irq = platform_get_irq(pdev, 0); |
1485 | if (irq < 0) | 1485 | if (irq < 0) |
1486 | return -EINVAL; | 1486 | return irq; |
1487 | 1487 | ||
1488 | iores = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 1488 | iores = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
1489 | sdma->regs = devm_ioremap_resource(&pdev->dev, iores); | 1489 | sdma->regs = devm_ioremap_resource(&pdev->dev, iores); |