ARM: hisi: depend on ARCH_MULTI_V7
authorArnd Bergmann <arnd@arndb.de>
Mon, 29 Sep 2014 15:46:15 +0000 (17:46 +0200)
committerArnd Bergmann <arnd@arndb.de>
Thu, 2 Oct 2014 14:40:10 +0000 (16:40 +0200)
hisi has a general dependency on ARCH_MULTIPLATFORM, which is
problematic when building a kernel for non-V7 platforms but selecting
drivers that might conflict with other architecture levels.

In this case, it broke my (still out of tree) patch set that
enables V7M multiplatform support, since that does not enable
MULTI_IRQ support:

arch/arm/kernel/built-in.o: In function `set_handle_irq':
arch/arm/kernel/irq.c:125: undefined reference to `handle_arch_irq'
arch/arm/kernel/built-in.o: In function `setup_arch':
arch/arm/kernel/setup.c:965: undefined reference to `handle_arch_irq'

Since all hisilicon platforms are ARMv7 based, we can avoid this
problem by just making the dependency more specific.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Wei Xu <xuwei5@hisilicon.com>
arch/arm/mach-hisi/Kconfig

index 075772b34e80393c19479901dcca41704eba2d89..cd19433f76d3de7f862d8e8d1c1d312f2155d7c0 100644 (file)
@@ -1,6 +1,6 @@
 config ARCH_HISI
        bool "Hisilicon SoC Support"
-       depends on ARCH_MULTIPLATFORM
+       depends on ARCH_MULTI_V7
        select ARM_AMBA
        select ARM_GIC
        select ARM_TIMER_SP804
This page took 0.039968 seconds and 5 git commands to generate.