aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Murphy <[email protected]>2019-07-03 18:23:01 +0100
committerRob Herring <[email protected]>2019-10-08 13:50:22 -0500
commit862ab5578f754117742c8b8c8e5ddf98bdb190ba (patch)
tree24dcec3ad07c3c192ee710f2fd33173c22573363
parent76dd7068e32cec3389474d6f69ffd4d0536172da (diff)
of/address: Introduce of_get_next_dma_parent() helper
Add of_get_next_dma_parent() helper which is similar to __of_get_dma_parent(), but can be used in iterators and decrements the ref count on the prior parent. Signed-off-by: Robin Murphy <[email protected]> Reviewed-by: Geert Uytterhoeven <[email protected]> Tested-by: Nicolas Saenz Julienne <[email protected]> Reviewed-by: Nicolas Saenz Julienne <[email protected]> Signed-off-by: Rob Herring <[email protected]>
-rw-r--r--drivers/of/address.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/of/address.c b/drivers/of/address.c
index 53d2656c2269..e9188c82fdae 100644
--- a/drivers/of/address.c
+++ b/drivers/of/address.c
@@ -695,6 +695,16 @@ static struct device_node *__of_get_dma_parent(const struct device_node *np)
return of_node_get(args.np);
}
+static struct device_node *of_get_next_dma_parent(struct device_node *np)
+{
+ struct device_node *parent;
+
+ parent = __of_get_dma_parent(np);
+ of_node_put(np);
+
+ return parent;
+}
+
u64 of_translate_dma_address(struct device_node *dev, const __be32 *in_addr)
{
struct device_node *host;