Messages in this thread Patch in this message |  | | From | Thierry Reding <> | Subject | [PATCH] genirq: Depend on IRQ_DOMAIN | Date | Thu, 12 Dec 2013 15:22:32 +0100 |
| |
Commit 088f40b7b027 (genirq: Generic chip: Add linear irq domain support) makes reference to the irq_domain_xlate_onetwocell() function which is only available when IRQ domain support is enabled.
Signed-off-by: Thierry Reding <treding@nvidia.com> --- kernel/irq/Kconfig | 1 + 1 file changed, 1 insertion(+)
diff --git a/kernel/irq/Kconfig b/kernel/irq/Kconfig index 4a1fef09f658..07cbdfea9ae2 100644 --- a/kernel/irq/Kconfig +++ b/kernel/irq/Kconfig @@ -40,6 +40,7 @@ config IRQ_EDGE_EOI_HANDLER # Generic configurable interrupt chip implementation config GENERIC_IRQ_CHIP bool + select IRQ_DOMAIN # Generic irq_domain hw <--> linux irq number translation config IRQ_DOMAIN -- 1.8.4.2
|  |