Skip to content

Commit

Permalink
ARM: hisi: depend on ARCH_MULTI_V7
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Arnd Bergmann committed Oct 2, 2014
1 parent c3ca213 commit d8f0faa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-hisi/Kconfig
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit d8f0faa

Please sign in to comment.