diff options
| author | Eric Biggers <ebiggers@google.com> | 2025-04-22 08:27:09 -0700 |
|---|---|---|
| committer | Herbert Xu <herbert@gondor.apana.org.au> | 2025-04-28 19:40:53 +0800 |
| commit | cc16e228a205ffe26c6f71a9ed165fe964f3d638 (patch) | |
| tree | d23dc4518c559e3f886ed1c64bf1964592c3def4 /lib/crypto | |
| parent | crypto: arm - move library functions to arch/arm/lib/crypto/ (diff) | |
| download | linux-cc16e228a205ffe26c6f71a9ed165fe964f3d638.tar.gz linux-cc16e228a205ffe26c6f71a9ed165fe964f3d638.zip | |
crypto: arm64 - move library functions to arch/arm64/lib/crypto/
Continue disentangling the crypto library functions from the generic
crypto infrastructure by moving the arm64 ChaCha and Poly1305 library
functions into a new directory arch/arm64/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 59135009e4f0..7395234d654b 100644 --- a/lib/crypto/Kconfig +++ b/lib/crypto/Kconfig @@ -159,6 +159,9 @@ if !KMSAN # avoid false positives from assembly if ARM source "arch/arm/lib/crypto/Kconfig" endif +if ARM64 +source "arch/arm64/lib/crypto/Kconfig" +endif endif endmenu |
