aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/kernel/ibmebus.c
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2008-01-02 23:13:37 -0500
committerPaul Mackerras <paulus@samba.org>2008-01-16 22:57:20 -0500
commit85e99b9fffb62e101e38c74c935256fc589703c2 (patch)
tree60e27e43527332ac21be5c1c0ee95f11a61d6cf1 /arch/powerpc/kernel/ibmebus.c
parente25c47ffa97ca5e4602593b03ce6d21cff652864 (diff)
[POWERPC] arch/powerpc/kernel: Use for_each_child_of_node
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/kernel/ibmebus.c')
-rw-r--r--arch/powerpc/kernel/ibmebus.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/ibmebus.c b/arch/powerpc/kernel/ibmebus.c
index 3b708449f731..fd5ae8d17c96 100644
--- a/arch/powerpc/kernel/ibmebus.c
+++ b/arch/powerpc/kernel/ibmebus.c
@@ -172,7 +172,7 @@ static int ibmebus_create_devices(const struct of_device_id *matches)
172 172
173 root = of_find_node_by_path("/"); 173 root = of_find_node_by_path("/");
174 174
175 for (child = NULL; (child = of_get_next_child(root, child)); ) { 175 for_each_child_of_node(root, child) {
176 if (!of_match_node(matches, child)) 176 if (!of_match_node(matches, child))
177 continue; 177 continue;
178 178