diff options
Diffstat (limited to 'drivers/of')
-rw-r--r-- | drivers/of/base.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/drivers/of/base.c b/drivers/of/base.c index 82bb78680ff6..6b6dfcc56522 100644 --- a/drivers/of/base.c +++ b/drivers/of/base.c | |||
@@ -134,3 +134,27 @@ struct device_node *of_get_parent(const struct device_node *node) | |||
134 | return np; | 134 | return np; |
135 | } | 135 | } |
136 | EXPORT_SYMBOL(of_get_parent); | 136 | EXPORT_SYMBOL(of_get_parent); |
137 | |||
138 | /** | ||
139 | * of_get_next_child - Iterate a node childs | ||
140 | * @node: parent node | ||
141 | * @prev: previous child of the parent node, or NULL to get first | ||
142 | * | ||
143 | * Returns a node pointer with refcount incremented, use | ||
144 | * of_node_put() on it when done. | ||
145 | */ | ||
146 | struct device_node *of_get_next_child(const struct device_node *node, | ||
147 | struct device_node *prev) | ||
148 | { | ||
149 | struct device_node *next; | ||
150 | |||
151 | read_lock(&devtree_lock); | ||
152 | next = prev ? prev->sibling : node->child; | ||
153 | for (; next; next = next->sibling) | ||
154 | if (of_node_get(next)) | ||
155 | break; | ||
156 | of_node_put(prev); | ||
157 | read_unlock(&devtree_lock); | ||
158 | return next; | ||
159 | } | ||
160 | EXPORT_SYMBOL(of_get_next_child); | ||