diff options
author | Jia Jie Ho <[email protected]> | 2023-05-19 21:42:33 +0800 |
---|---|---|
committer | Herbert Xu <[email protected]> | 2023-05-22 13:16:47 +0800 |
commit | 4d4c2b2537a334f57bb39a26e2e116ceadfdc13d (patch) | |
tree | 0d6cb2852203055080025279d720be17aec56bd3 | |
parent | f573db7aa528f11820dcc811bc7791b231d22b1c (diff) |
crypto: starfive - Fix driver dependencies
Kconfig updated to depend on DMADEVICES instead of selecting it.
Reported-by: kernel test robot <[email protected]>
Link: https://lore.kernel.org/oe-kbuild-all/[email protected]/
Signed-off-by: Jia Jie Ho <[email protected]>
Signed-off-by: Herbert Xu <[email protected]>
-rw-r--r-- | drivers/crypto/starfive/Kconfig | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/crypto/starfive/Kconfig b/drivers/crypto/starfive/Kconfig index be58d1473523..908c162ba79a 100644 --- a/drivers/crypto/starfive/Kconfig +++ b/drivers/crypto/starfive/Kconfig @@ -4,14 +4,13 @@ config CRYPTO_DEV_JH7110 tristate "StarFive JH7110 cryptographic engine driver" - depends on SOC_STARFIVE || COMPILE_TEST + depends on (SOC_STARFIVE || COMPILE_TEST) && DMADEVICES select CRYPTO_ENGINE select CRYPTO_HMAC select CRYPTO_SHA256 select CRYPTO_SHA512 select CRYPTO_SM3_GENERIC select ARM_AMBA - select DMADEVICES select AMBA_PL08X help Support for StarFive JH7110 crypto hardware acceleration engine. |