Lines Matching full:node

34 /* "/aliaes" node */
37 /* "/chosen" node */
40 /* node pointed to by the stdout-path alias */
47 * struct alias_prop - Alias property in 'aliases' node
49 * The structure represents one alias property of 'aliases' node as
52 * @link: List node to link the structure in aliases_lookup list
78 /* No #address-cells property for the root node */ in of_n_addr_cells()
94 /* No #size-cells property for the root node */ in of_n_size_cells()
249 struct device_node *of_get_parent(const struct device_node *node) in of_get_parent() argument
253 if (!node) in of_get_parent()
256 np = of_node_get(node->parent); in of_get_parent()
261 static struct device_node *__of_get_next_child(const struct device_node *node, in __of_get_next_child() argument
266 if (!node) in __of_get_next_child()
269 next = prev ? prev->sibling : node->child; in __of_get_next_child()
424 * Search for a property in a device node and validate the requested size.
426 * @np: device node from which the property value is to be read.
536 * @np: device node from which the property value is to be read.
580 struct device_node *node = NULL; in __of_parse_phandle_with_args() local
602 * Find the provider node and parse the #*-cells in __of_parse_phandle_with_args()
607 * except when we're going to return the found node in __of_parse_phandle_with_args()
611 node = of_find_node_by_phandle(phandle); in __of_parse_phandle_with_args()
612 if (!node) { in __of_parse_phandle_with_args()
620 if (of_read_u32(node, cells_name, &count)) { in __of_parse_phandle_with_args()
623 node->full_name); in __of_parse_phandle_with_args()
656 out_args->np = node; in __of_parse_phandle_with_args()
662 of_node_put(node); in __of_parse_phandle_with_args()
669 of_node_put(node); in __of_parse_phandle_with_args()
670 node = NULL; in __of_parse_phandle_with_args()
676 * Unlock node before returning result; will be one of: in __of_parse_phandle_with_args()
683 if (node) in __of_parse_phandle_with_args()
684 of_node_put(node); in __of_parse_phandle_with_args()
729 debug("adding DT alias:%s: stem=%s id=%i node=%s\n", in of_alias_add()