diff options
author | Stephan Mueller <smueller@chronox.de> | 2016-02-17 07:00:01 +0100 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2016-02-17 15:53:02 +0800 |
commit | 49abc0d2e19b28e90f443334fb6cd66f275713e6 (patch) | |
tree | 6eec0f9baa287e479bc2ac1cc319a73c9fb018a9 /arch/s390 | |
parent | ba871e1d299154953dcee23590c0316283897261 (diff) | |
download | linux-49abc0d2e19b28e90f443334fb6cd66f275713e6.tar.bz2 |
crypto: xts - fix compile errors
Commit 28856a9e52c7 missed the addition of the crypto/xts.h include file
for different architecture-specific AES implementations.
Signed-off-by: Stephan Mueller <smueller@chronox.de>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'arch/s390')
-rw-r--r-- | arch/s390/crypto/aes_s390.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/s390/crypto/aes_s390.c b/arch/s390/crypto/aes_s390.c index 3f1a1a4e81fe..48e1a2d3e318 100644 --- a/arch/s390/crypto/aes_s390.c +++ b/arch/s390/crypto/aes_s390.c @@ -27,6 +27,7 @@ #include <linux/cpufeature.h> #include <linux/init.h> #include <linux/spinlock.h> +#include <crypto/xts.h> #include "crypt_s390.h" #define AES_KEYLEN_128 1 |