diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2023-08-23 18:32:25 +0800 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2023-08-24 08:42:36 +0200 |
commit | 8da1985ff75226fd758ef379f9dd98986c811704 (patch) | |
tree | 073a6a6f246b1c5adc596755dae94ae82f11bbb7 /net/mac80211/fils_aead.c | |
parent | c4125bf88341056a2051c6c083a7f69661733fc6 (diff) |
wifi: mac80211: 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>
Link: https://lore.kernel.org/r/E1qYlA0-006vFr-Ts@formenos.hmeau.com
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/fils_aead.c')
-rw-r--r-- | net/mac80211/fils_aead.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/fils_aead.c b/net/mac80211/fils_aead.c index e1d4cfd99128..912c46f74d24 100644 --- a/net/mac80211/fils_aead.c +++ b/net/mac80211/fils_aead.c @@ -5,9 +5,9 @@ */ #include <crypto/aes.h> -#include <crypto/algapi.h> #include <crypto/hash.h> #include <crypto/skcipher.h> +#include <crypto/utils.h> #include "ieee80211_i.h" #include "aes_cmac.h" |