fwnode_get_next_child_node
EXPORT_SYMBOL_GPL(fwnode_get_next_child_node);
next_child = fwnode_get_next_child_node(fwnode, next_child);
return fwnode_get_next_child_node(dev_fwnode(dev), child);
child = fwnode_get_next_child_node(dev_fwnode(&pdev->dev), NULL);
csi_ep = fwnode_get_next_child_node(csi_port, NULL);
caps = fwnode_get_next_child_node(capabilities, caps);
struct fwnode_handle *fwnode_get_next_child_node(
for (child = fwnode_get_next_child_node(fwnode, NULL); child; \
child = fwnode_get_next_child_node(fwnode, child))
fwnode_get_next_child_node(fwnode, NULL); \
child; child = fwnode_get_next_child_node(fwnode, child))