public inbox for kernel-janitors@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH -next] dmaengine: fsl-edma: fix the error return code in mcf_edma_probe()
@ 2018-07-04  8:21 Wei Yongjun
  2018-07-04  9:04 ` Angelo Dureghello
  0 siblings, 1 reply; 2+ messages in thread
From: Wei Yongjun @ 2018-07-04  8:21 UTC (permalink / raw)
  To: Vinod Koul, Dan Williams, Angelo Dureghello
  Cc: Wei Yongjun, dmaengine, kernel-janitors

The error return code PTR_ERR(pdata) is always 0 since pdata is
NULL in this error handling case.

Fixes: 5c1355ad87a2 ("dmaengine: fsl-edma: add ColdFire mcf5441x edma support")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
---
 drivers/dma/mcf-edma.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/dma/mcf-edma.c b/drivers/dma/mcf-edma.c
index 31e5317..787b7b6 100644
--- a/drivers/dma/mcf-edma.c
+++ b/drivers/dma/mcf-edma.c
@@ -175,7 +175,7 @@ static int mcf_edma_probe(struct platform_device *pdev)
 
 	pdata = dev_get_platdata(&pdev->dev);
 	if (!pdata)
-		return PTR_ERR(pdata);
+		return -EINVAL;
 
 	chans = pdata->dma_channels;
 	len = sizeof(*mcf_edma) + sizeof(*mcf_chan) * chans;


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-07-04  9:04 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-04  8:21 [PATCH -next] dmaengine: fsl-edma: fix the error return code in mcf_edma_probe() Wei Yongjun
2018-07-04  9:04 ` Angelo Dureghello

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox