diff options
author | Eric Biggers <ebiggers@google.com> | 2025-04-22 18:27:10 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2025-04-28 14:40:53 +0300 |
commit | 939a54ac073808db15ed411d563dfadb3ef12798 (patch) | |
tree | 31fb16e1a1a1d76d7ed28042b5548dee0c80d1a3 /lib/crypto | |
parent | cc16e228a205ffe26c6f71a9ed165fe964f3d638 (diff) | |
download | linux-939a54ac073808db15ed411d563dfadb3ef12798.tar.xz |
crypto: mips - move library functions to arch/mips/lib/crypto/
Continue disentangling the crypto library functions from the generic
crypto infrastructure by moving the mips ChaCha and Poly1305 library
functions into a new directory arch/mips/lib/crypto/ that does not
depend on CRYPTO. This mirrors the distinction between crypto/ and
lib/crypto/.
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'lib/crypto')
-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 7395234d654b..c5c01bc3569d 100644 --- a/lib/crypto/Kconfig +++ b/lib/crypto/Kconfig @@ -162,6 +162,9 @@ endif if ARM64 source "arch/arm64/lib/crypto/Kconfig" endif +if MIPS +source "arch/mips/lib/crypto/Kconfig" +endif endif endmenu |