diff options
| author | Stephan Mueller <smueller@chronox.de> | 2016-02-17 07:00:01 +0100 |
|---|---|---|
| committer | Mister Oyster <oysterized@gmail.com> | 2017-08-31 13:38:18 +0200 |
| commit | 055b5098a363dc1e15fdc2a498e263bde938228a (patch) | |
| tree | abfaf47dc2a7b4004e03971fde809de8fc60828e /arch | |
| parent | 91f8b6c8fb550efa43211baf23bbe4c87e833561 (diff) | |
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')
| -rw-r--r-- | arch/arm64/crypto/aes-glue.c | 1 | ||||
| -rw-r--r-- | arch/s390/crypto/aes_s390.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm64/crypto/aes-glue.c b/arch/arm64/crypto/aes-glue.c index 37e727c76..7acb576c6 100644 --- a/arch/arm64/crypto/aes-glue.c +++ b/arch/arm64/crypto/aes-glue.c @@ -15,6 +15,7 @@ #include <crypto/algapi.h> #include <linux/module.h> #include <linux/cpufeature.h> +#include <crypto/xts.h> #ifdef USE_V8_CRYPTO_EXTENSIONS #define MODE "ce" diff --git a/arch/s390/crypto/aes_s390.c b/arch/s390/crypto/aes_s390.c index e74990cbb..cab0d585a 100644 --- a/arch/s390/crypto/aes_s390.c +++ b/arch/s390/crypto/aes_s390.c @@ -26,6 +26,7 @@ #include <linux/module.h> #include <linux/init.h> #include <linux/spinlock.h> +#include <crypto/xts.h> #include "crypt_s390.h" #define AES_KEYLEN_128 1 |
