diff options
author | Christophe Kerello <christophe.kerello@foss.st.com> | 2023-03-24 16:51:04 +0100 |
---|---|---|
committer | Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> | 2023-03-27 18:04:56 +0200 |
commit | 20c082a2ba25374a13505b78cdad7f6a2cf8d763 (patch) | |
tree | c1c2e39acc2d54deb6195d98ff8a42d9175f3eb1 /drivers/memory/Kconfig | |
parent | memory: tegra: remove redundant variable initialization (diff) | |
download | linux-20c082a2ba25374a13505b78cdad7f6a2cf8d763.tar.xz linux-20c082a2ba25374a13505b78cdad7f6a2cf8d763.zip |
memory: stm32-fmc2-ebi: depends on ARCH_STM32 instead of MACH_STM32MP157
To be able to compile the driver on all STM32MP SOCs, we move the
"depends on" on ARCH_STM32.
Signed-off-by: Christophe Kerello <christophe.kerello@foss.st.com>
Link: https://lore.kernel.org/r/20230324155105.826063-2-christophe.kerello@foss.st.com
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Diffstat (limited to 'drivers/memory/Kconfig')
-rw-r--r-- | drivers/memory/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/memory/Kconfig b/drivers/memory/Kconfig index fac290e48e0b..91774e6ee624 100644 --- a/drivers/memory/Kconfig +++ b/drivers/memory/Kconfig @@ -228,7 +228,7 @@ config RENESAS_RPCIF config STM32_FMC2_EBI tristate "Support for FMC2 External Bus Interface on STM32MP SoCs" - depends on MACH_STM32MP157 || COMPILE_TEST + depends on ARCH_STM32 || COMPILE_TEST select MFD_SYSCON help Select this option to enable the STM32 FMC2 External Bus Interface |