[PATCH] of:Use remote_parent instead of remote

From: logic.yu
Date: Sat Apr 22 2023 - 11:04:05 EST


Since the parent node of the remote node is obtained here,
it is more reasonable to change it to the remote_parent

Signed-off-by: logic.yu <hymmsx.yu@xxxxxxxxx>
---
drivers/of/property.c | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/drivers/of/property.c b/drivers/of/property.c
index ddc75cd50825..ee5f0c008b40 100644
--- a/drivers/of/property.c
+++ b/drivers/of/property.c
@@ -835,7 +835,7 @@ EXPORT_SYMBOL(of_graph_get_endpoint_count);
struct device_node *of_graph_get_remote_node(const struct device_node *node,
u32 port, u32 endpoint)
{
- struct device_node *endpoint_node, *remote;
+ struct device_node *endpoint_node, *remote_parent;

endpoint_node = of_graph_get_endpoint_by_regs(node, port, endpoint);
if (!endpoint_node) {
@@ -844,20 +844,20 @@ struct device_node *of_graph_get_remote_node(const struct device_node *node,
return NULL;
}

- remote = of_graph_get_remote_port_parent(endpoint_node);
+ remote_parent = of_graph_get_remote_port_parent(endpoint_node);
of_node_put(endpoint_node);
- if (!remote) {
- pr_debug("no valid remote node\n");
+ if (!remote_parent) {
+ pr_debug("no valid remote_parent node\n");
return NULL;
}

- if (!of_device_is_available(remote)) {
- pr_debug("not available for remote node\n");
- of_node_put(remote);
+ if (!of_device_is_available(remote_parent)) {
+ pr_debug("not available for remote_parent node\n");
+ of_node_put(remote_parent);
return NULL;
}

- return remote;
+ return remote_parent;
}
EXPORT_SYMBOL(of_graph_get_remote_node);

--
2.17.1