diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2023-08-22 11:23:58 +0200 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2023-09-15 12:30:43 +0200 |
commit | 8622bd190ad5245c2966b965158d90a7c53d96c3 (patch) | |
tree | 4845559a90ee1bb4401d62bf9e1606247e21f97d /fs/ubifs/auth.c | |
parent | fscrypt: Do not include crypto/algapi.h (diff) | |
download | linux-8622bd190ad5245c2966b965158d90a7c53d96c3.tar.xz linux-8622bd190ad5245c2966b965158d90a7c53d96c3.zip |
ubifs: 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.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'fs/ubifs/auth.c')
-rw-r--r-- | fs/ubifs/auth.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/ubifs/auth.c b/fs/ubifs/auth.c index e564d5ff8781..0d561ecb6869 100644 --- a/fs/ubifs/auth.c +++ b/fs/ubifs/auth.c @@ -9,10 +9,9 @@ * This file implements various helper functions for UBIFS authentication support */ -#include <linux/crypto.h> #include <linux/verification.h> #include <crypto/hash.h> -#include <crypto/algapi.h> +#include <crypto/utils.h> #include <keys/user-type.h> #include <keys/asymmetric-type.h> |