summaryrefslogtreecommitdiff
path: root/lib/crypto
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@google.com>2025-04-22 18:27:12 +0300
committerHerbert Xu <herbert@gondor.apana.org.au>2025-04-28 14:40:53 +0300
commitd604877c2f9473848345db8e79341d4f6338dd78 (patch)
tree08415f62c84fbccd5867e48c817ef697cee16c53 /lib/crypto
parentf9f86c03efebf81274b1ec66840410d58255fb84 (diff)
downloadlinux-d604877c2f9473848345db8e79341d4f6338dd78.tar.xz
crypto: riscv - move library functions to arch/riscv/lib/crypto/
Continue disentangling the crypto library functions from the generic crypto infrastructure by moving the riscv ChaCha library functions into a new directory arch/riscv/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/Kconfig3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/crypto/Kconfig b/lib/crypto/Kconfig
index 4b3e94ed84bb..0b06c25eb38a 100644
--- a/lib/crypto/Kconfig
+++ b/lib/crypto/Kconfig
@@ -168,6 +168,9 @@ endif
if PPC
source "arch/powerpc/lib/crypto/Kconfig"
endif
+if RISCV
+source "arch/riscv/lib/crypto/Kconfig"
+endif
endif
endmenu