public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] dma: of-dma: Fix "'nbcells' may be used uninitialized" warning
@ 2013-05-20 19:17 Fabio Estevam
  2013-05-20 19:21 ` Lars-Peter Clausen
  0 siblings, 1 reply; 2+ messages in thread
From: Fabio Estevam @ 2013-05-20 19:17 UTC (permalink / raw)
  To: vinod.koul; +Cc: linux-kernel, festevam, Fabio Estevam

Rearrange the code a bit so that we can get rid of the following build warning:

drivers/dma/of-dma.c:83:15: warning: 'nbcells' may be used uninitialized in this function [-Wuninitialized]

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 drivers/dma/of-dma.c | 20 ++++++++++++--------
 1 file changed, 12 insertions(+), 8 deletions(-)

diff --git a/drivers/dma/of-dma.c b/drivers/dma/of-dma.c
index 7aa0864..107e820 100644
--- a/drivers/dma/of-dma.c
+++ b/drivers/dma/of-dma.c
@@ -77,15 +77,14 @@ int of_dma_controller_register(struct device_node *np,
 		return -ENOMEM;
 
 	prop = of_get_property(np, "#dma-cells", NULL);
-	if (prop)
-		nbcells = be32_to_cpup(prop);
+	if (!prop)
+		goto free;
+
+	nbcells = be32_to_cpup(prop);
 
-	if (!prop || !nbcells) {
-		pr_err("%s: #dma-cells property is missing or invalid\n",
-		       __func__);
-		kfree(ofdma);
-		return -EINVAL;
-	}
+
+	if (!nbcells)
+		goto free;
 
 	ofdma->of_node = np;
 	ofdma->of_dma_nbcells = nbcells;
@@ -98,6 +97,11 @@ int of_dma_controller_register(struct device_node *np,
 	mutex_unlock(&of_dma_lock);
 
 	return 0;
+
+free:
+	pr_err("%s: #dma-cells property is missing or invalid\n", __func__);
+	kfree(ofdma);
+	return -EINVAL;
 }
 EXPORT_SYMBOL_GPL(of_dma_controller_register);
 
-- 
1.8.1.2



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

end of thread, other threads:[~2013-05-20 19:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-20 19:17 [PATCH] dma: of-dma: Fix "'nbcells' may be used uninitialized" warning Fabio Estevam
2013-05-20 19:21 ` Lars-Peter Clausen

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