Commit d17e37c4 authored by Liang He's avatar Liang He Committed by Rob Herring

of: device: Fix missing of_node_put() in of_dma_set_restricted_buffer

We should use of_node_put() for the reference 'node' returned by
of_parse_phandle() which will increase the refcount.

Fixes: fec9b625 ("of: Add plumbing for restricted DMA pool")
Co-authored-by: default avatarMiaoqian Lin <linmq006@gmail.com>
Signed-off-by: default avatarLiang He <windhl@126.com>
Signed-off-by: default avatarRob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20220702014449.263772-1-windhl@126.com
parent 9465a984
...@@ -81,8 +81,11 @@ of_dma_set_restricted_buffer(struct device *dev, struct device_node *np) ...@@ -81,8 +81,11 @@ of_dma_set_restricted_buffer(struct device *dev, struct device_node *np)
* restricted-dma-pool region is allowed. * restricted-dma-pool region is allowed.
*/ */
if (of_device_is_compatible(node, "restricted-dma-pool") && if (of_device_is_compatible(node, "restricted-dma-pool") &&
of_device_is_available(node)) of_device_is_available(node)) {
of_node_put(node);
break; break;
}
of_node_put(node);
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment