diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2015-04-22 07:06:27 (GMT) |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2015-04-23 06:18:10 (GMT) |
commit | 34ed9a35788a562d80648247022ae9497cc88ebc (patch) | |
tree | 3e9c6c9610a6295f4e8ccee866bc6edaf3b509cd | |
parent | 7be58b1250f471a4548c0fe7a6b4001b62ea1e30 (diff) | |
download | linux-34ed9a35788a562d80648247022ae9497cc88ebc.tar.xz |
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>
-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 6c348df..3303e8a 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" |