Commit 773f63e6 authored by David S. Miller's avatar David S. Miller Committed by David S. Miller

[SPARC64]: Do not break out of PCI controller probing loop too early.

parent 8b1b9b89
No related merge requests found
...@@ -278,10 +278,8 @@ static int pci_controller_scan(int (*handler)(char *, int, int)) ...@@ -278,10 +278,8 @@ static int pci_controller_scan(int (*handler)(char *, int, int))
item_len++; item_len++;
} }
if (handler(namebuf, item_len, node)) { if (handler(namebuf, item_len, node))
count++; count++;
break;
}
} }
node = prom_getsibling(node); node = prom_getsibling(node);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment