diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2023-08-22 11:30:21 +0200 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2023-09-15 12:30:43 +0200 |
commit | c66218ccf03bcf1986d5b52c3f6726c8b41e59e5 (patch) | |
tree | 35833203502164731b656f39e9bd005a139a6409 /net/ipv6/ah6.c | |
parent | Bluetooth: Do not include crypto/algapi.h (diff) | |
download | linux-c66218ccf03bcf1986d5b52c3f6726c8b41e59e5.tar.xz linux-c66218ccf03bcf1986d5b52c3f6726c8b41e59e5.zip |
ah: 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 '')
-rw-r--r-- | net/ipv6/ah6.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/ah6.c b/net/ipv6/ah6.c index 01005035ad10..56f9282ec5df 100644 --- a/net/ipv6/ah6.c +++ b/net/ipv6/ah6.c @@ -13,8 +13,8 @@ #define pr_fmt(fmt) "IPv6: " fmt -#include <crypto/algapi.h> #include <crypto/hash.h> +#include <crypto/utils.h> #include <linux/module.h> #include <linux/slab.h> #include <net/ip.h> |