aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/irqchip/arm-gic.h7
-rw-r--r--include/linux/irqchip/irq-crossbar.h11
2 files changed, 17 insertions, 1 deletions
diff --git a/include/linux/irqchip/arm-gic.h b/include/linux/irqchip/arm-gic.h
index 0ceb389dba6c..7ed92d0560d5 100644
--- a/include/linux/irqchip/arm-gic.h
+++ b/include/linux/irqchip/arm-gic.h
@@ -93,6 +93,11 @@ int gic_get_cpu_id(unsigned int cpu);
93void gic_migrate_target(unsigned int new_cpu_id); 93void gic_migrate_target(unsigned int new_cpu_id);
94unsigned long gic_get_sgir_physaddr(void); 94unsigned long gic_get_sgir_physaddr(void);
95 95
96extern const struct irq_domain_ops *gic_routable_irq_domain_ops;
97static inline void __init register_routable_domain_ops
98 (const struct irq_domain_ops *ops)
99{
100 gic_routable_irq_domain_ops = ops;
101}
96#endif /* __ASSEMBLY */ 102#endif /* __ASSEMBLY */
97
98#endif 103#endif
diff --git a/include/linux/irqchip/irq-crossbar.h b/include/linux/irqchip/irq-crossbar.h
new file mode 100644
index 000000000000..e5537b81df8d
--- /dev/null
+++ b/include/linux/irqchip/irq-crossbar.h
@@ -0,0 +1,11 @@
1/*
2 * drivers/irqchip/irq-crossbar.h
3 *
4 * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 */
11int irqcrossbar_init(void);