Commit f94823f2 authored by Frank Rowand's avatar Frank Rowand Committed by Rob Herring

of: Rename functions to more accurately reflect what they do

Some function names are misleading or do not provide a good
sense of what they do.  Rename the functions to ne more
informative.
Signed-off-by: default avatarFrank Rowand <frank.rowand@am.sony.com>
Signed-off-by: default avatarRob Herring <robh@kernel.org>
parent 9f27ede4
...@@ -53,7 +53,7 @@ static struct device_node *__of_find_node_by_full_name(struct device_node *node, ...@@ -53,7 +53,7 @@ static struct device_node *__of_find_node_by_full_name(struct device_node *node,
/* /*
* Find live tree's maximum phandle value. * Find live tree's maximum phandle value.
*/ */
static phandle of_get_tree_max_phandle(void) static phandle live_tree_max_phandle(void)
{ {
struct device_node *node; struct device_node *node;
phandle phandle; phandle phandle;
...@@ -74,7 +74,7 @@ static phandle of_get_tree_max_phandle(void) ...@@ -74,7 +74,7 @@ static phandle of_get_tree_max_phandle(void)
/* /*
* Adjust a subtree's phandle values by a given delta. * Adjust a subtree's phandle values by a given delta.
*/ */
static void __of_adjust_tree_phandles(struct device_node *node, static void adjust_overlay_phandles(struct device_node *node,
int phandle_delta) int phandle_delta)
{ {
struct device_node *child; struct device_node *child;
...@@ -101,10 +101,10 @@ static void __of_adjust_tree_phandles(struct device_node *node, ...@@ -101,10 +101,10 @@ static void __of_adjust_tree_phandles(struct device_node *node,
} }
for_each_child_of_node(node, child) for_each_child_of_node(node, child)
__of_adjust_tree_phandles(child, phandle_delta); adjust_overlay_phandles(child, phandle_delta);
} }
static int __of_adjust_phandle_ref(struct device_node *node, static int update_usages_of_a_phandle_reference(struct device_node *node,
struct property *rprop, int value) struct property *rprop, int value)
{ {
phandle phandle; phandle phandle;
...@@ -184,7 +184,7 @@ static int __of_node_name_cmp(const struct device_node *dn1, ...@@ -184,7 +184,7 @@ static int __of_node_name_cmp(const struct device_node *dn1,
* Does not take any devtree locks so make sure you call this on a tree * Does not take any devtree locks so make sure you call this on a tree
* which is at the detached state. * which is at the detached state.
*/ */
static int __of_adjust_tree_phandle_references(struct device_node *node, static int adjust_local_phandle_references(struct device_node *node,
struct device_node *target, int phandle_delta) struct device_node *target, int phandle_delta)
{ {
struct device_node *child, *childtarget; struct device_node *child, *childtarget;
...@@ -238,7 +238,7 @@ static int __of_adjust_tree_phandle_references(struct device_node *node, ...@@ -238,7 +238,7 @@ static int __of_adjust_tree_phandle_references(struct device_node *node,
if (!childtarget) if (!childtarget)
return -EINVAL; return -EINVAL;
err = __of_adjust_tree_phandle_references(child, childtarget, err = adjust_local_phandle_references(child, childtarget,
phandle_delta); phandle_delta);
if (err) if (err)
return err; return err;
...@@ -277,8 +277,8 @@ int of_resolve_phandles(struct device_node *resolve) ...@@ -277,8 +277,8 @@ int of_resolve_phandles(struct device_node *resolve)
if (!resolve || !of_node_check_flag(resolve, OF_DETACHED)) if (!resolve || !of_node_check_flag(resolve, OF_DETACHED))
return -EINVAL; return -EINVAL;
phandle_delta = of_get_tree_max_phandle() + 1; phandle_delta = live_tree_max_phandle() + 1;
__of_adjust_tree_phandles(resolve, phandle_delta); adjust_overlay_phandles(resolve, phandle_delta);
childroot = NULL; childroot = NULL;
for_each_child_of_node(resolve, childroot) for_each_child_of_node(resolve, childroot)
...@@ -286,12 +286,12 @@ int of_resolve_phandles(struct device_node *resolve) ...@@ -286,12 +286,12 @@ int of_resolve_phandles(struct device_node *resolve)
break; break;
if (childroot != NULL) { if (childroot != NULL) {
err = __of_adjust_tree_phandle_references(childroot, err = adjust_local_phandle_references(childroot,
resolve, 0); resolve, 0);
if (err) if (err)
return err; return err;
BUG_ON(__of_adjust_tree_phandle_references(childroot, BUG_ON(adjust_local_phandle_references(childroot,
resolve, phandle_delta)); resolve, phandle_delta));
} }
...@@ -344,7 +344,7 @@ int of_resolve_phandles(struct device_node *resolve) ...@@ -344,7 +344,7 @@ int of_resolve_phandles(struct device_node *resolve)
phandle = refnode->phandle; phandle = refnode->phandle;
of_node_put(refnode); of_node_put(refnode);
err = __of_adjust_phandle_ref(resolve, rprop, phandle); err = update_usages_of_a_phandle_reference(resolve, rprop, phandle);
if (err) if (err)
break; break;
} }
......
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