|
@@ -190,10 +190,17 @@ extern struct device_node *of_get_parent(const struct device_node *node);
|
|
extern struct device_node *of_get_next_parent(struct device_node *node);
|
|
extern struct device_node *of_get_next_parent(struct device_node *node);
|
|
extern struct device_node *of_get_next_child(const struct device_node *node,
|
|
extern struct device_node *of_get_next_child(const struct device_node *node,
|
|
struct device_node *prev);
|
|
struct device_node *prev);
|
|
|
|
+extern struct device_node *of_get_next_available_child(
|
|
|
|
+ const struct device_node *node, struct device_node *prev);
|
|
|
|
+
|
|
#define for_each_child_of_node(parent, child) \
|
|
#define for_each_child_of_node(parent, child) \
|
|
for (child = of_get_next_child(parent, NULL); child != NULL; \
|
|
for (child = of_get_next_child(parent, NULL); child != NULL; \
|
|
child = of_get_next_child(parent, child))
|
|
child = of_get_next_child(parent, child))
|
|
|
|
|
|
|
|
+#define for_each_available_child_of_node(parent, child) \
|
|
|
|
+ for (child = of_get_next_available_child(parent, NULL); child != NULL; \
|
|
|
|
+ child = of_get_next_available_child(parent, child))
|
|
|
|
+
|
|
static inline int of_get_child_count(const struct device_node *np)
|
|
static inline int of_get_child_count(const struct device_node *np)
|
|
{
|
|
{
|
|
struct device_node *child;
|
|
struct device_node *child;
|