Commit-ID: 0df337cf92c107fb515c9df6907052a97bd484b9 Gitweb: http://git.kernel.org/tip/0df337cf92c107fb515c9df6907052a97bd484b9 Author: Richard Weinberger <[email protected]> AuthorDate: Mon, 25 Jan 2016 23:24:17 +0100 Committer: Thomas Gleixner <[email protected]> CommitDate: Tue, 26 Jan 2016 16:00:14 +0100
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]> --- drivers/irqchip/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/irqchip/Kconfig b/drivers/irqchip/Kconfig index 11fc2a2..90ab591 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

