aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPalmer Dabbelt <palmer@sifive.com>2018-04-04 00:31:28 -0400
committerThomas Gleixner <tglx@linutronix.de>2018-04-04 06:04:28 -0400
commit667b24d049e5dd643a351757fee1a17472cd1719 (patch)
tree7b531cb9bea56eff59afc6d9d3f960d4ca7e7ce7
parentd6f73825dcd0fa1de9a6bf37c79f6109cc87b82f (diff)
arm64: Set CONFIG_MULTI_IRQ_HANDLER
arm has an optional MULTI_IRQ_HANDLER, which arm64 copied but didn't make optional. The multi irq handler infrastructure has been copied to generic code selectable with a new config symbol. That symbol can be selected by randconfig builds and can cause build breakage. Introduce CONFIG_MULTI_IRQ_HANDLER as an intermediate step which prevents the core config symbol from being selected. The arm64 local config symbol will be removed once arm64 gets converted to the generic code. Signed-off-by: Palmer Dabbelt <palmer@sifive.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Arnd Bergmann <arnd@arndb.de> Link: https://lkml.kernel.org/r/20180404043130.31277-2-palmer@sifive.com
-rw-r--r--arch/arm64/Kconfig4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm64/Kconfig b/arch/arm64/Kconfig
index 7381eeb7ef8e..302d0b681676 100644
--- a/arch/arm64/Kconfig
+++ b/arch/arm64/Kconfig
@@ -132,6 +132,7 @@ config ARM64
132 select IRQ_DOMAIN 132 select IRQ_DOMAIN
133 select IRQ_FORCED_THREADING 133 select IRQ_FORCED_THREADING
134 select MODULES_USE_ELF_RELA 134 select MODULES_USE_ELF_RELA
135 select MULTI_IRQ_HANDLER
135 select NO_BOOTMEM 136 select NO_BOOTMEM
136 select OF 137 select OF
137 select OF_EARLY_FLATTREE 138 select OF_EARLY_FLATTREE
@@ -275,6 +276,9 @@ config ARCH_SUPPORTS_UPROBES
275config ARCH_PROC_KCORE_TEXT 276config ARCH_PROC_KCORE_TEXT
276 def_bool y 277 def_bool y
277 278
279config MULTI_IRQ_HANDLER
280 def_bool y
281
278source "init/Kconfig" 282source "init/Kconfig"
279 283
280source "kernel/Kconfig.freezer" 284source "kernel/Kconfig.freezer"