diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2015-04-22 03:06:32 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2015-04-23 02:18:11 -0400 |
commit | d8fe0ddd0256711e9cf2c539e77c341daa0eb2cf (patch) | |
tree | d3ec0f08a58b7849bb5a9d8762a5318cc96d3ed1 /net | |
parent | 1ce3311580515268504db929c3219e57927b9e6a (diff) |
mac80211: Include crypto/aead.h
All users of AEAD should include crypto/aead.h instead of
include/linux/crypto.h.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Acked-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/mac80211/aes_ccm.c | 3 | ||||
-rw-r--r-- | net/mac80211/aes_gcm.c | 3 | ||||
-rw-r--r-- | net/mac80211/aes_gmac.c | 2 |
3 files changed, 3 insertions, 5 deletions
diff --git a/net/mac80211/aes_ccm.c b/net/mac80211/aes_ccm.c index 208df7c0b6ea..70d53dab6508 100644 --- a/net/mac80211/aes_ccm.c +++ b/net/mac80211/aes_ccm.c | |||
@@ -11,9 +11,8 @@ | |||
11 | 11 | ||
12 | #include <linux/kernel.h> | 12 | #include <linux/kernel.h> |
13 | #include <linux/types.h> | 13 | #include <linux/types.h> |
14 | #include <linux/crypto.h> | ||
15 | #include <linux/err.h> | 14 | #include <linux/err.h> |
16 | #include <crypto/aes.h> | 15 | #include <crypto/aead.h> |
17 | 16 | ||
18 | #include <net/mac80211.h> | 17 | #include <net/mac80211.h> |
19 | #include "key.h" | 18 | #include "key.h" |
diff --git a/net/mac80211/aes_gcm.c b/net/mac80211/aes_gcm.c index fd278bbe1b0d..b91c9d7bf665 100644 --- a/net/mac80211/aes_gcm.c +++ b/net/mac80211/aes_gcm.c | |||
@@ -8,9 +8,8 @@ | |||
8 | 8 | ||
9 | #include <linux/kernel.h> | 9 | #include <linux/kernel.h> |
10 | #include <linux/types.h> | 10 | #include <linux/types.h> |
11 | #include <linux/crypto.h> | ||
12 | #include <linux/err.h> | 11 | #include <linux/err.h> |
13 | #include <crypto/aes.h> | 12 | #include <crypto/aead.h> |
14 | 13 | ||
15 | #include <net/mac80211.h> | 14 | #include <net/mac80211.h> |
16 | #include "key.h" | 15 | #include "key.h" |
diff --git a/net/mac80211/aes_gmac.c b/net/mac80211/aes_gmac.c index f1321b7d6506..c34b06caf539 100644 --- a/net/mac80211/aes_gmac.c +++ b/net/mac80211/aes_gmac.c | |||
@@ -9,8 +9,8 @@ | |||
9 | 9 | ||
10 | #include <linux/kernel.h> | 10 | #include <linux/kernel.h> |
11 | #include <linux/types.h> | 11 | #include <linux/types.h> |
12 | #include <linux/crypto.h> | ||
13 | #include <linux/err.h> | 12 | #include <linux/err.h> |
13 | #include <crypto/aead.h> | ||
14 | #include <crypto/aes.h> | 14 | #include <crypto/aes.h> |
15 | 15 | ||
16 | #include <net/mac80211.h> | 16 | #include <net/mac80211.h> |