Lines Matching full:subnode
87 * dev_read_subnode() - find a named subnode of a device
89 * @dev: device whose DT node contains the subnode
90 * @subnode_name: name of subnode to find
91 * @return reference to subnode (which can be invalid if there is no such
92 * subnode)
422 * dev_read_first_subnode() - find the first subnode of a device's node
425 * @return reference to the first subnode (which can be invalid if the device's
431 * ofnode_next_subnode() - find the next sibling of a subnode
434 * @return reference to the next subnode (which can be invalid if the node
713 * @subnode: ofnode holding the current subnode
716 #define dev_for_each_subnode(subnode, dev) \ argument
717 for (subnode = dev_read_first_subnode(dev); \
718 ofnode_valid(subnode); \
719 subnode = ofnode_next_subnode(subnode))