Commit 021a607c authored by Stephen Neuendorffer's avatar Stephen Neuendorffer Committed by Grant Likely

[POWERPC] Xilinx: update compatible list for interrupt controller

These values now match what is generated by the uboot BSP generator.
Signed-off-by: default avatarStephen Neuendorffer <stephen.neuendorffer@xilinx.com>
Signed-off-by: default avatarGrant Likely <grant.likely@secretlab.ca>
parent 4f43143f
...@@ -135,10 +135,16 @@ void __init xilinx_intc_init_tree(void) ...@@ -135,10 +135,16 @@ void __init xilinx_intc_init_tree(void)
struct device_node *np; struct device_node *np;
/* find top level interrupt controller */ /* find top level interrupt controller */
for_each_compatible_node(np, NULL, "xilinx,intc") { for_each_compatible_node(np, NULL, "xlnx,opb-intc-1.00.c") {
if (!of_get_property(np, "interrupts", NULL)) if (!of_get_property(np, "interrupts", NULL))
break; break;
} }
if (!np) {
for_each_compatible_node(np, NULL, "xlnx,xps-intc-1.00.a") {
if (!of_get_property(np, "interrupts", NULL))
break;
}
}
/* xilinx interrupt controller needs to be top level */ /* xilinx interrupt controller needs to be top level */
BUG_ON(!np); BUG_ON(!np);
......
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