All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] dmaengine: imx-sdma: return proper error if kzalloc fails
@ 2011-07-12 13:00 Axel Lin
  2011-07-12 13:51 ` Sascha Hauer
  0 siblings, 1 reply; 3+ messages in thread
From: Axel Lin @ 2011-07-12 13:00 UTC (permalink / raw)
  To: linux-kernel; +Cc: Sascha Hauer, Dan Williams, Vinod Koul

Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
 drivers/dma/imx-sdma.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/drivers/dma/imx-sdma.c b/drivers/dma/imx-sdma.c
index 1ea47db..f96d038 100644
--- a/drivers/dma/imx-sdma.c
+++ b/drivers/dma/imx-sdma.c
@@ -1281,8 +1281,10 @@ static int __init sdma_probe(struct platform_device *pdev)
 		goto err_request_irq;
 
 	sdma->script_addrs = kzalloc(sizeof(*sdma->script_addrs), GFP_KERNEL);
-	if (!sdma->script_addrs)
+	if (!sdma->script_addrs) {
+		ret = -ENOMEM;
 		goto err_alloc;
+	}
 
 	sdma->version = pdata->sdma_version;
 
-- 
1.7.4.1




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

end of thread, other threads:[~2011-07-25 14:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-12 13:00 [PATCH] dmaengine: imx-sdma: return proper error if kzalloc fails Axel Lin
2011-07-12 13:51 ` Sascha Hauer
2011-07-25 14:24   ` Vinod Koul

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.