diff options
author | Rob Herring <robh@kernel.org> | 2014-02-01 16:35:42 -0600 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2014-02-02 19:52:42 -0800 |
commit | 57789d69c5e7cdfdad6c0f1c54ab17240d800ac2 (patch) | |
tree | 094c7808c29d0d4da2602c955bf7b7409b6d53ac /arch/arm | |
parent | 38dbfb59d1175ef458d006556061adeaa8751b72 (diff) |
ARM: hisi: fix kconfig warning on HAVE_ARM_TWD
Commit "ARM: hisi: don't select SMP" introduced a kconfig warning:
warning: (ARCH_HI3xxx) selects HAVE_ARM_TWD which has unmet direct dependencies (SMP)
Fix HAVE_ARM_TWD to depend on SMP.
Signed-off-by: Rob Herring <robh@kernel.org>
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-hisi/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-hisi/Kconfig b/arch/arm/mach-hisi/Kconfig index 8f4649b301b..1abae5f6a41 100644 --- a/arch/arm/mach-hisi/Kconfig +++ b/arch/arm/mach-hisi/Kconfig @@ -8,7 +8,7 @@ config ARCH_HI3xxx select CLKSRC_OF select GENERIC_CLOCKEVENTS select HAVE_ARM_SCU - select HAVE_ARM_TWD + select HAVE_ARM_TWD if SMP select HAVE_SMP select PINCTRL select PINCTRL_SINGLE |