[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>
This commit is contained in:
Stephen Rothwell
2008-01-03 15:13:37 +11:00
committed by Paul Mackerras
parent e25c47ffa9
commit 85e99b9fff
5 changed files with 8 additions and 11 deletions
+1 -4
View File
@@ -280,10 +280,7 @@ void __init find_and_init_phbs(void)
struct pci_controller *phb;
struct device_node *root = of_find_node_by_path("/");
for (node = of_get_next_child(root, NULL);
node != NULL;
node = of_get_next_child(root, node)) {
for_each_child_of_node(root, node) {
if (node->type == NULL || (strcmp(node->type, "pci") != 0 &&
strcmp(node->type, "pciex") != 0))
continue;