diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2023-08-22 11:34:10 +0200 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2023-09-15 12:30:43 +0200 |
commit | bd5af65465c1f9659351ec50bcf167d4966e76d0 (patch) | |
tree | 52fd6135476ac40e065493005c9c12ca9dd255dd /net/mptcp/subflow.c | |
parent | ah: Do not include crypto/algapi.h (diff) | |
download | linux-bd5af65465c1f9659351ec50bcf167d4966e76d0.tar.xz linux-bd5af65465c1f9659351ec50bcf167d4966e76d0.zip |
mptcp: 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: Matthieu Baerts <matthieu.baerts@tessares.net>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'net/mptcp/subflow.c')
-rw-r--r-- | net/mptcp/subflow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mptcp/subflow.c b/net/mptcp/subflow.c index 9bf3c7bc1762..d1e03c0bc118 100644 --- a/net/mptcp/subflow.c +++ b/net/mptcp/subflow.c @@ -9,8 +9,8 @@ #include <linux/kernel.h> #include <linux/module.h> #include <linux/netdevice.h> -#include <crypto/algapi.h> #include <crypto/sha2.h> +#include <crypto/utils.h> #include <net/sock.h> #include <net/inet_common.h> #include <net/inet_hashtables.h> |