[RFC PATCH 39/77] check: Get 'chosen' node using get_subnode()
Herve Codina <[email protected]> Mon, 12 Jan 2026 15:19:29 +0100
| Newsgroups | org.kernel.vger.devicetree-spec,org.kernel.vger.devicetree-compiler,org.kernel.vger.linux-devicetree,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <[email protected]> |
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 <[email protected]> --- 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