From: Herbert Xu Date: Tue, 22 Aug 2023 09:30:21 +0000 (+0800) Subject: ah: Do not include crypto/algapi.h X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=c66218ccf03bcf1986d5b52c3f6726c8b41e59e5;p=linux.git 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 --- diff --git a/net/ipv4/ah4.c b/net/ipv4/ah4.c index 015c0f4ec5ba9..bc0f968c5d5b4 100644 --- a/net/ipv4/ah4.c +++ b/net/ipv4/ah4.c @@ -1,8 +1,8 @@ // SPDX-License-Identifier: GPL-2.0-only #define pr_fmt(fmt) "IPsec: " fmt -#include #include +#include #include #include #include diff --git a/net/ipv6/ah6.c b/net/ipv6/ah6.c index 01005035ad101..56f9282ec5df4 100644 --- a/net/ipv6/ah6.c +++ b/net/ipv6/ah6.c @@ -13,8 +13,8 @@ #define pr_fmt(fmt) "IPv6: " fmt -#include #include +#include #include #include #include