diff options
author | Eric Biggers <ebiggers@google.com> | 2025-04-22 18:27:13 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2025-04-28 14:40:53 +0300 |
commit | 3ea91323fe32011092fc75575d9a074ab374d673 (patch) | |
tree | 3afbe8a9e96a4215026b393ab63dbd48a9f9e149 /lib | |
parent | d604877c2f9473848345db8e79341d4f6338dd78 (diff) | |
download | linux-3ea91323fe32011092fc75575d9a074ab374d673.tar.xz |
crypto: s390 - move library functions to arch/s390/lib/crypto/
Continue disentangling the crypto library functions from the generic
crypto infrastructure by moving the s390 ChaCha library functions into a
new directory arch/s390/lib/crypto/ that does not depend on CRYPTO.
This mirrors the distinction between crypto/ and lib/crypto/.
Acked-by: Heiko Carstens <hca@linux.ibm.com>
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/crypto/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/crypto/Kconfig b/lib/crypto/Kconfig index 0b06c25eb38a..db19a7acc2fb 100644 --- a/lib/crypto/Kconfig +++ b/lib/crypto/Kconfig @@ -171,6 +171,9 @@ endif if RISCV source "arch/riscv/lib/crypto/Kconfig" endif +if S390 +source "arch/s390/lib/crypto/Kconfig" +endif endif endmenu |