diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-07-10 01:13:20 -0400 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2019-07-15 20:31:47 -0400 |
commit | 7e8a0f10899075ac2665c78c4e49dbaf32bf3346 (patch) | |
tree | 4ae06044c9eb2fe3d616c9e540051bf0d555f818 | |
parent | 7cba7caceebc0c17acd4165db313575f8c0f5387 (diff) |
ARM: stm32: use "depends on" instead of "if" after prompt
This appeared after the global fixups by commit e32465429490 ("ARM: use
"depends on" for SoC configs instead of "if" after prompt"). Fix it now.
Link: https://lore.kernel.org/r/20190710051320.8738-1-yamada.masahiro@socionext.com
Fixes: e32465429490 ("ARM: use "depends on" for SoC configs instead of "if" after prompt")
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Olof Johansson <olof@lixom.net>
-rw-r--r-- | arch/arm/mach-stm32/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-stm32/Kconfig b/arch/arm/mach-stm32/Kconfig index 36e6c68c0b57..d1fe0c335ea7 100644 --- a/arch/arm/mach-stm32/Kconfig +++ b/arch/arm/mach-stm32/Kconfig | |||
@@ -1,6 +1,7 @@ | |||
1 | # SPDX-License-Identifier: GPL-2.0-only | 1 | # SPDX-License-Identifier: GPL-2.0-only |
2 | menuconfig ARCH_STM32 | 2 | menuconfig ARCH_STM32 |
3 | bool "STMicroelectronics STM32 family" if ARM_SINGLE_ARMV7M || ARCH_MULTI_V7 | 3 | bool "STMicroelectronics STM32 family" |
4 | depends on ARM_SINGLE_ARMV7M || ARCH_MULTI_V7 | ||
4 | select ARMV7M_SYSTICK if ARM_SINGLE_ARMV7M | 5 | select ARMV7M_SYSTICK if ARM_SINGLE_ARMV7M |
5 | select HAVE_ARM_ARCH_TIMER if ARCH_MULTI_V7 | 6 | select HAVE_ARM_ARCH_TIMER if ARCH_MULTI_V7 |
6 | select ARM_GIC if ARCH_MULTI_V7 | 7 | select ARM_GIC if ARCH_MULTI_V7 |