Lines Matching full:subnode
118 * dev_read_subnode() - find a named subnode of a device
120 * @dev: device whose DT node contains the subnode
121 * @subnode_name: name of subnode to find
122 * @return reference to subnode (which can be invalid if there is no such
123 * subnode)
433 * dev_read_first_subnode() - find the first subnode of a device's node
436 * @return reference to the first subnode (which can be invalid if the device's
442 * ofnode_next_subnode() - find the next sibling of a subnode
445 * @return reference to the next subnode (which can be invalid if the node
767 * @subnode: ofnode holding the current subnode
770 #define dev_for_each_subnode(subnode, dev) \ argument
771 for (subnode = dev_read_first_subnode(dev); \
772 ofnode_valid(subnode); \
773 subnode = ofnode_next_subnode(subnode))