diff options
| author | Eric Biggers <ebiggers@kernel.org> | 2025-12-03 21:29:54 -0800 |
|---|---|---|
| committer | Mark Brown <broonie@kernel.org> | 2025-12-04 13:01:39 +0000 |
| commit | 8fb817335ad8d960ea05af3882cea113e59cb4e1 (patch) | |
| tree | fd9d6d8a82a6ea784c52253f9c3dfb4d385c4865 | |
| parent | 434f8154bf475c7932e62f455551947b7473e91a (diff) | |
ASoC: cros_ec_codec: Remove unnecessary selection of CRYPTO
The only crypto-related functionality this codec uses is the sha256()
function, which is provided by CRYPTO_LIB_SHA256. Originally
CRYPTO_LIB_SHA256 was visible only when CRYPTO; however, that was fixed
years ago and the libraries can now be selected on their own.
So, remove the unnecessary selection of CRYPTO.
Signed-off-by: Eric Biggers <ebiggers@kernel.org>
Link: https://patch.msgid.link/20251204052954.488568-1-ebiggers@kernel.org
Signed-off-by: Mark Brown <broonie@kernel.org>
| -rw-r--r-- | sound/soc/codecs/Kconfig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/soc/codecs/Kconfig b/sound/soc/codecs/Kconfig index 4eb345cb29f0..c245a0b09cc6 100644 --- a/sound/soc/codecs/Kconfig +++ b/sound/soc/codecs/Kconfig @@ -777,7 +777,6 @@ config SND_SOC_CQ0093VC config SND_SOC_CROS_EC_CODEC tristate "codec driver for ChromeOS EC" depends on CROS_EC - select CRYPTO select CRYPTO_LIB_SHA256 help If you say yes here you will get support for the |
