get_node_by_path() is going to be replaced by a more generic function in
order to handle orphan node support for addon device-tree.
The 'chosen' node is a subnode of the root node and can perfectly be
retrieved using get_subnode().
In preparation of the future change related to get_node_by_path(),
replace its usage to get the 'chosen' node by call to get_subnode().
The modification doesn't introduce any functional changes.
Signed-off-by: Herve Codina <herve.codina@bootlin.com>
---
checks.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/checks.c b/checks.c
index d1e215e..9744431 100644
--- a/checks.c
+++ b/checks.c
@@ -1341,8 +1341,7 @@ static void check_obsolete_chosen_interrupt_controller(struct check *c,
if (node != dt)
return;
-
- chosen = get_node_by_path(dt, "/chosen");
+ chosen = get_subnode(dt, "chosen");
if (!chosen)
return;
--
2.52.0