summaryrefslogtreecommitdiffstats
path: root/drivers/dma/imx-sdma.c
diff options
context:
space:
mode:
authorFabio Estevam <fabio.estevam@freescale.com>2014-12-29 15:20:53 -0200
committerVinod Koul <vinod.koul@intel.com>2015-01-13 23:51:07 +0530
commit63c72e028a1dd18515c356834d3f9cfce1cd3f51 (patch)
treedc9a12fdd46d8eda77f562103f7a0e3710713fda /drivers/dma/imx-sdma.c
parent7f24e0ee00d052f1710b68bbf6221cc674eb7a9b (diff)
downloadlinux-0-day-63c72e028a1dd18515c356834d3f9cfce1cd3f51.tar.gz
linux-0-day-63c72e028a1dd18515c356834d3f9cfce1cd3f51.tar.xz
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>
Diffstat (limited to 'drivers/dma/imx-sdma.c')
-rw-r--r--drivers/dma/imx-sdma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/imx-sdma.c b/drivers/dma/imx-sdma.c
index 125c326c525fc..fc874e53bec40 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);