Commit 8da1985f authored by Herbert Xu's avatar Herbert Xu Committed by Johannes Berg

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: default avatarHerbert Xu <herbert@gondor.apana.org.au>
Link: https://lore.kernel.org/r/E1qYlA0-006vFr-Ts@formenos.hmeau.comSigned-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent c4125bf8
...@@ -5,9 +5,9 @@ ...@@ -5,9 +5,9 @@
*/ */
#include <crypto/aes.h> #include <crypto/aes.h>
#include <crypto/algapi.h>
#include <crypto/hash.h> #include <crypto/hash.h>
#include <crypto/skcipher.h> #include <crypto/skcipher.h>
#include <crypto/utils.h>
#include "ieee80211_i.h" #include "ieee80211_i.h"
#include "aes_cmac.h" #include "aes_cmac.h"
......
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
* Copyright 2018-2020, 2022-2023 Intel Corporation * Copyright 2018-2020, 2022-2023 Intel Corporation
*/ */
#include <crypto/utils.h>
#include <linux/if_ether.h> #include <linux/if_ether.h>
#include <linux/etherdevice.h> #include <linux/etherdevice.h>
#include <linux/list.h> #include <linux/list.h>
...@@ -17,7 +18,6 @@ ...@@ -17,7 +18,6 @@
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/export.h> #include <linux/export.h>
#include <net/mac80211.h> #include <net/mac80211.h>
#include <crypto/algapi.h>
#include <asm/unaligned.h> #include <asm/unaligned.h>
#include "ieee80211_i.h" #include "ieee80211_i.h"
#include "driver-ops.h" #include "driver-ops.h"
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
#include <asm/unaligned.h> #include <asm/unaligned.h>
#include <net/mac80211.h> #include <net/mac80211.h>
#include <crypto/aes.h> #include <crypto/aes.h>
#include <crypto/algapi.h> #include <crypto/utils.h>
#include "ieee80211_i.h" #include "ieee80211_i.h"
#include "michael.h" #include "michael.h"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment