summaryrefslogtreecommitdiff
path: root/sound/soc/fsl/fsl_dma.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2011-08-26 09:29:43 +0200
committerTakashi Iwai <tiwai@suse.de>2011-08-26 09:29:43 +0200
commit26b9b559ed9ff3bef5642ef731748d28d894705f (patch)
tree9145782f06f68f88c004828d5f85d8d772d1cde6 /sound/soc/fsl/fsl_dma.c
parent468c5458856236cde6df1b0654d32bf6625349a5 (diff)
parent18036b5866b5e407a28f444a80de186a5d7df767 (diff)
Merge branch 'fix/asoc' into for-linus
Diffstat (limited to 'sound/soc/fsl/fsl_dma.c')
-rw-r--r--sound/soc/fsl/fsl_dma.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/soc/fsl/fsl_dma.c b/sound/soc/fsl/fsl_dma.c
index 732208c8c0b4..cb50598338e9 100644
--- a/sound/soc/fsl/fsl_dma.c
+++ b/sound/soc/fsl/fsl_dma.c
@@ -879,10 +879,12 @@ static struct device_node *find_ssi_node(struct device_node *dma_channel_np)
* assume that device_node pointers are a valid comparison.
*/
np = of_parse_phandle(ssi_np, "fsl,playback-dma", 0);
+ of_node_put(np);
if (np == dma_channel_np)
return ssi_np;
np = of_parse_phandle(ssi_np, "fsl,capture-dma", 0);
+ of_node_put(np);
if (np == dma_channel_np)
return ssi_np;
}