Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 75bdc7f3 authored by Christophe JAILLET's avatar Christophe JAILLET Committed by Vinod Koul
Browse files

dmaengine: ti-dma-crossbar: Add some 'of_node_put()' in error path.



Add some missing 'of_node_put()' in early exit error path.

Signed-off-by: default avatarChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: default avatarVinod Koul <vinod.koul@intel.com>
parent 57b5a321
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -149,6 +149,7 @@ static int ti_am335x_xbar_probe(struct platform_device *pdev)
	match = of_match_node(ti_am335x_master_match, dma_node);
	if (!match) {
		dev_err(&pdev->dev, "DMA master is not supported\n");
		of_node_put(dma_node);
		return -EINVAL;
	}

@@ -339,6 +340,7 @@ static int ti_dra7_xbar_probe(struct platform_device *pdev)
	match = of_match_node(ti_dra7_master_match, dma_node);
	if (!match) {
		dev_err(&pdev->dev, "DMA master is not supported\n");
		of_node_put(dma_node);
		return -EINVAL;
	}