@@ -1,7 +1,7 @@
# SPDX-License-Identifier: GPL-2.0-only
config CRYPTO_DEV_STM32_CRC
tristate "Support for STM32 crc accelerators"
- depends on ARCH_STM32
+ depends on ARCH_STM32 || (COMPILE_TEST && OF)
select CRYPTO_HASH
select CRC32
help
@@ -10,7 +10,7 @@ config CRYPTO_DEV_STM32_CRC
config CRYPTO_DEV_STM32_HASH
tristate "Support for STM32 hash accelerators"
- depends on ARCH_STM32
+ depends on ARCH_STM32 || (COMPILE_TEST && OF)
depends on HAS_DMA
select CRYPTO_HASH
select CRYPTO_MD5
@@ -23,7 +23,7 @@ config CRYPTO_DEV_STM32_HASH
config CRYPTO_DEV_STM32_CRYP
tristate "Support for STM32 cryp accelerators"
- depends on ARCH_STM32
+ depends on ARCH_STM32 || (COMPILE_TEST && OF)
select CRYPTO_HASH
select CRYPTO_ENGINE
select CRYPTO_LIB_DES
it's helpful for complie test in other platform(e.g.X86) Signed-off-by: Cai Huoqing <caihuoqing@baidu.com> --- drivers/crypto/stm32/Kconfig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)