powerpc: Use for_each_node_with_property() in of_irq_map_init()
Signed-off-by: Michael Ellerman <michael@ellerman.id.au> Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:
parent
1e291b14c8
commit
54018178ef
|
@ -731,10 +731,7 @@ void of_irq_map_init(unsigned int flags)
|
||||||
if (flags & OF_IMAP_NO_PHANDLE) {
|
if (flags & OF_IMAP_NO_PHANDLE) {
|
||||||
struct device_node *np;
|
struct device_node *np;
|
||||||
|
|
||||||
for(np = NULL; (np = of_find_all_nodes(np)) != NULL;) {
|
for_each_node_with_property(np, "interrupt-controller") {
|
||||||
if (of_get_property(np, "interrupt-controller", NULL)
|
|
||||||
== NULL)
|
|
||||||
continue;
|
|
||||||
/* Skip /chosen/interrupt-controller */
|
/* Skip /chosen/interrupt-controller */
|
||||||
if (strcmp(np->name, "chosen") == 0)
|
if (strcmp(np->name, "chosen") == 0)
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in New Issue