aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/fs/crypto
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2023-08-22 17:21:11 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2023-09-15 18:30:43 +0800
commit82d1c16c8f8228f0632602d89551b1123fb4a768 (patch)
treeda3671904d96e99d3896b755b6754d43bb5f402a /fs/crypto
parenthwrng: geode - fix accessing registers (diff)
downloadwireguard-linux-82d1c16c8f8228f0632602d89551b1123fb4a768.tar.xz
wireguard-linux-82d1c16c8f8228f0632602d89551b1123fb4a768.zip
fscrypt: Do not include crypto/algapi.h
The header file crypto/algapi.h is for internal use only. Use the header file crypto/utils.h instead. Acked-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'fs/crypto')
-rw-r--r--fs/crypto/keysetup_v1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/crypto/keysetup_v1.c b/fs/crypto/keysetup_v1.c
index 75dabd9b27f9..d698ecb9ad44 100644
--- a/fs/crypto/keysetup_v1.c
+++ b/fs/crypto/keysetup_v1.c
@@ -20,8 +20,8 @@
* managed alongside the master keys in the filesystem-level keyring)
*/
-#include <crypto/algapi.h>
#include <crypto/skcipher.h>
+#include <crypto/utils.h>
#include <keys/user-type.h>
#include <linux/hashtable.h>
#include <linux/scatterlist.h>