diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2015-05-11 17:48:11 +0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2015-05-13 10:31:46 +0800 |
commit | 53033d4d36b0299ef02e28155913414ec1089aac (patch) | |
tree | 5edaeea8dc6195460fcd332910e40d06eae97b31 /include/crypto/cryptd.h | |
parent | 97cacb9f7a1e7502e7e8e7964b00dc191be565eb (diff) | |
download | linux-53033d4d36b0299ef02e28155913414ec1089aac.tar.gz linux-53033d4d36b0299ef02e28155913414ec1089aac.tar.bz2 linux-53033d4d36b0299ef02e28155913414ec1089aac.zip |
crypto: cryptd - Add missing aead.h inclusion
cryptd.h needs to include crypto/aead.h because it uses crypto_aead.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include/crypto/cryptd.h')
-rw-r--r-- | include/crypto/cryptd.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/crypto/cryptd.h b/include/crypto/cryptd.h index ba98918bbd9b..1547f540c920 100644 --- a/include/crypto/cryptd.h +++ b/include/crypto/cryptd.h @@ -14,6 +14,7 @@ #include <linux/crypto.h> #include <linux/kernel.h> +#include <crypto/aead.h> #include <crypto/hash.h> struct cryptd_ablkcipher { |