Lines Matching full:node
13 /* integer value within a device tree property which references another node */
32 * struct device_node: Device tree node
34 * @name: Node name
35 * @type: Node type (value of device_type property) or "<NULL>" if none
37 * @full_name: Full path to node, e.g. "/bus@1/spi@1100"
39 * @parent: Pointer to parent node, or NULL if this is the root node
40 * @child: Pointer to head of child node list, or NULL if no children
41 * @sibling: Pointer to the next sibling node, or NULL if this is the last
70 * Here &node is the phandle of the node 'wibble', i.e. 5. There are three
76 * @np: Node that the phandle refers to
109 return np ? np->full_name : "<no-node>"; in of_node_full_name()