diff options
author | Jeremy Kerr <jeremy.kerr@canonical.com> | 2010-02-01 23:34:11 -0500 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2010-02-09 10:32:48 -0500 |
commit | 89751a7cb70a20f0d604dd7c4be29dd7b0011718 (patch) | |
tree | 17abed1974c3c79c978b20bd396078df80f19f40 /arch/microblaze/kernel | |
parent | fcdeb7fedf89f4bbc2e11959794968080cd8426e (diff) |
of: merge of_find_node_by_phandle
Merge common function between powerpc, sparc and microblaze. Code is
identical for powerpc and microblaze, but adds a lock (and release) of
the devtree_lock on sparc.
Signed-off-by: Jeremy Kerr <jeremy.kerr@canonical.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'arch/microblaze/kernel')
-rw-r--r-- | arch/microblaze/kernel/prom.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/arch/microblaze/kernel/prom.c b/arch/microblaze/kernel/prom.c index 8171282a0b0d..f7bd0ee8d481 100644 --- a/arch/microblaze/kernel/prom.c +++ b/arch/microblaze/kernel/prom.c | |||
@@ -176,27 +176,6 @@ void __init early_init_devtree(void *params) | |||
176 | * | 176 | * |
177 | *******/ | 177 | *******/ |
178 | 178 | ||
179 | /** | ||
180 | * of_find_node_by_phandle - Find a node given a phandle | ||
181 | * @handle: phandle of the node to find | ||
182 | * | ||
183 | * Returns a node pointer with refcount incremented, use | ||
184 | * of_node_put() on it when done. | ||
185 | */ | ||
186 | struct device_node *of_find_node_by_phandle(phandle handle) | ||
187 | { | ||
188 | struct device_node *np; | ||
189 | |||
190 | read_lock(&devtree_lock); | ||
191 | for (np = allnodes; np != NULL; np = np->allnext) | ||
192 | if (np->phandle == handle) | ||
193 | break; | ||
194 | of_node_get(np); | ||
195 | read_unlock(&devtree_lock); | ||
196 | return np; | ||
197 | } | ||
198 | EXPORT_SYMBOL(of_find_node_by_phandle); | ||
199 | |||
200 | #if defined(CONFIG_DEBUG_FS) && defined(DEBUG) | 179 | #if defined(CONFIG_DEBUG_FS) && defined(DEBUG) |
201 | static struct debugfs_blob_wrapper flat_dt_blob; | 180 | static struct debugfs_blob_wrapper flat_dt_blob; |
202 | 181 | ||