diff options
author | Richard Weinberger <[email protected]> | 2016-01-25 23:24:17 +0100 |
---|---|---|
committer | Thomas Gleixner <[email protected]> | 2016-01-26 16:00:14 +0100 |
commit | 0df337cf92c107fb515c9df6907052a97bd484b9 (patch) | |
tree | 417dde7bd248591bd507af028f3fc64f3573d0e3 | |
parent | eb249a11913d316fc1a27dd07a1e1e43bda9199d (diff) |
irqchip: Fix dependencies for archs w/o HAS_IOMEM
Not every arch has io memory. So, unbreak the build by fixing the
dependencies.
Signed-off-by: Richard Weinberger <[email protected]>
Cc: [email protected]
Cc: Jason Cooper <[email protected]>
Cc: Marc Zyngier <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Thomas Gleixner <[email protected]>
-rw-r--r-- | drivers/irqchip/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/irqchip/Kconfig b/drivers/irqchip/Kconfig index 11fc2a27fa2e..90ab59107830 100644 --- a/drivers/irqchip/Kconfig +++ b/drivers/irqchip/Kconfig @@ -154,6 +154,7 @@ config TB10X_IRQC config TS4800_IRQ tristate "TS-4800 IRQ controller" select IRQ_DOMAIN + depends on HAS_IOMEM help Support for the TS-4800 FPGA IRQ controller |