diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2015-04-22 15:06:27 +0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2015-04-23 14:18:10 +0800 |
commit | 34ed9a35788a562d80648247022ae9497cc88ebc (patch) | |
tree | 3e9c6c9610a6295f4e8ccee866bc6edaf3b509cd /arch | |
parent | 7be58b1250f471a4548c0fe7a6b4001b62ea1e30 (diff) | |
download | linux-stable-34ed9a35788a562d80648247022ae9497cc88ebc.tar.gz linux-stable-34ed9a35788a562d80648247022ae9497cc88ebc.tar.bz2 linux-stable-34ed9a35788a562d80648247022ae9497cc88ebc.zip |
crypto: arm64/aes-ce-ccm - Include crypto/internal/aead.h
All implementers of AEAD should include crypto/internal/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 'arch')
-rw-r--r-- | arch/arm64/crypto/aes-ce-ccm-glue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/crypto/aes-ce-ccm-glue.c b/arch/arm64/crypto/aes-ce-ccm-glue.c index 6c348df5bf36..3303e8a7b837 100644 --- a/arch/arm64/crypto/aes-ce-ccm-glue.c +++ b/arch/arm64/crypto/aes-ce-ccm-glue.c @@ -13,7 +13,7 @@ #include <crypto/aes.h> #include <crypto/algapi.h> #include <crypto/scatterwalk.h> -#include <linux/crypto.h> +#include <crypto/internal/aead.h> #include <linux/module.h> #include "aes-ce-setkey.h" |