Lines Matching refs:child
59 struct device_node *child; member
893 #define for_each_child_of_node(parent, child) \ argument
894 for (child = of_get_next_child(parent, NULL); child != NULL; \
895 child = of_get_next_child(parent, child))
896 #define for_each_available_child_of_node(parent, child) \ argument
897 for (child = of_get_next_available_child(parent, NULL); child != NULL; \
898 child = of_get_next_available_child(parent, child))
906 struct device_node *child; in of_get_child_count() local
909 for_each_child_of_node(np, child) in of_get_child_count()
917 struct device_node *child; in of_get_available_child_count() local
920 for_each_available_child_of_node(np, child) in of_get_available_child_count()