Lines Matching refs:child
59 struct device_node *child; member
899 #define for_each_child_of_node(parent, child) \ argument
900 for (child = of_get_next_child(parent, NULL); child != NULL; \
901 child = of_get_next_child(parent, child))
902 #define for_each_available_child_of_node(parent, child) \ argument
903 for (child = of_get_next_available_child(parent, NULL); child != NULL; \
904 child = of_get_next_available_child(parent, child))
912 struct device_node *child; in of_get_child_count() local
915 for_each_child_of_node(np, child) in of_get_child_count()
923 struct device_node *child; in of_get_available_child_count() local
926 for_each_available_child_of_node(np, child) in of_get_available_child_count()