diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2023-08-22 11:21:11 +0200 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2023-09-15 12:30:43 +0200 |
commit | 82d1c16c8f8228f0632602d89551b1123fb4a768 (patch) | |
tree | da3671904d96e99d3896b755b6754d43bb5f402a /fs/crypto | |
parent | hwrng: geode - fix accessing registers (diff) | |
download | linux-82d1c16c8f8228f0632602d89551b1123fb4a768.tar.xz 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.c | 2 |
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> |