Lines Matching defs:child
675 * getting the next child. If the previous endpoint is NULL this
676 * will return the first child.
703 * is the child of a port node identified by port_reg. reg and port_reg are
939 struct fwnode_handle *child)
942 to_of_node(child)));
950 struct device_node *child;
952 for_each_available_child_of_node(node, child)
953 if (of_node_name_eq(child, childname))
954 return of_fwnode_handle(child);
1047 struct device_node *child)
1049 of_node_get(child);
1050 while (child) {
1051 if (child == test_ancestor) {
1052 of_node_put(child);
1055 child = of_get_next_parent(child);
1093 * link with a parent device as the consumer of its child device. In such
1135 * descendant nodes. By definition, a child node can't be a functional
1434 struct device_node *child;
1442 for_each_available_child_of_node(con_np, child)
1443 if (of_link_to_suppliers(dev, child) && !ret)