diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2023-08-23 13:32:25 +0300 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2023-08-24 09:42:36 +0300 |
commit | 8da1985ff75226fd758ef379f9dd98986c811704 (patch) | |
tree | 073a6a6f246b1c5adc596755dae94ae82f11bbb7 /net/mac80211/wpa.c | |
parent | c4125bf88341056a2051c6c083a7f69661733fc6 (diff) | |
download | linux-8da1985ff75226fd758ef379f9dd98986c811704.tar.xz |
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/wpa.c')
-rw-r--r-- | net/mac80211/wpa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/wpa.c b/net/mac80211/wpa.c index 4133496da378..2d8e38b3bcb5 100644 --- a/net/mac80211/wpa.c +++ b/net/mac80211/wpa.c @@ -15,7 +15,7 @@ #include <asm/unaligned.h> #include <net/mac80211.h> #include <crypto/aes.h> -#include <crypto/algapi.h> +#include <crypto/utils.h> #include "ieee80211_i.h" #include "michael.h" |