|
@@ -29,6 +29,17 @@ struct of_device *of_find_device_by_node(struct device_node *dp)
|
|
|
}
|
|
|
EXPORT_SYMBOL(of_find_device_by_node);
|
|
|
|
|
|
+int irq_of_parse_and_map(struct device_node *node, int index)
|
|
|
+{
|
|
|
+ struct of_device *op = of_find_device_by_node(node);
|
|
|
+
|
|
|
+ if (!op || index >= op->num_irqs)
|
|
|
+ return 0xffffffff;
|
|
|
+
|
|
|
+ return op->irqs[index];
|
|
|
+}
|
|
|
+EXPORT_SYMBOL(irq_of_parse_and_map);
|
|
|
+
|
|
|
#ifdef CONFIG_PCI
|
|
|
struct bus_type ebus_bus_type;
|
|
|
EXPORT_SYMBOL(ebus_bus_type);
|