diff options
author | Stephan Mueller <smueller@chronox.de> | 2016-02-17 01:00:01 -0500 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2016-02-17 02:53:02 -0500 |
commit | 49abc0d2e19b28e90f443334fb6cd66f275713e6 (patch) | |
tree | 6eec0f9baa287e479bc2ac1cc319a73c9fb018a9 | |
parent | ba871e1d299154953dcee23590c0316283897261 (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>
-rw-r--r-- | arch/arm/crypto/aes-ce-glue.c | 1 | ||||
-rw-r--r-- | arch/arm/crypto/aesbs-glue.c | 1 | ||||
-rw-r--r-- | arch/arm64/crypto/aes-glue.c | 1 | ||||
-rw-r--r-- | arch/powerpc/crypto/aes-spe-glue.c | 1 | ||||
-rw-r--r-- | arch/s390/crypto/aes_s390.c | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/crypto/aes-ce-glue.c b/arch/arm/crypto/aes-ce-glue.c index 85ff69b551c2..b6961a27a06c 100644 --- a/arch/arm/crypto/aes-ce-glue.c +++ b/arch/arm/crypto/aes-ce-glue.c | |||
@@ -15,6 +15,7 @@ | |||
15 | #include <crypto/ablk_helper.h> | 15 | #include <crypto/ablk_helper.h> |
16 | #include <crypto/algapi.h> | 16 | #include <crypto/algapi.h> |
17 | #include <linux/module.h> | 17 | #include <linux/module.h> |
18 | #include <crypto/xts.h> | ||
18 | 19 | ||
19 | MODULE_DESCRIPTION("AES-ECB/CBC/CTR/XTS using ARMv8 Crypto Extensions"); | 20 | MODULE_DESCRIPTION("AES-ECB/CBC/CTR/XTS using ARMv8 Crypto Extensions"); |
20 | MODULE_AUTHOR("Ard Biesheuvel <ard.biesheuvel@linaro.org>"); | 21 | MODULE_AUTHOR("Ard Biesheuvel <ard.biesheuvel@linaro.org>"); |
diff --git a/arch/arm/crypto/aesbs-glue.c b/arch/arm/crypto/aesbs-glue.c index d004bd143e6a..0511a6cafe24 100644 --- a/arch/arm/crypto/aesbs-glue.c +++ b/arch/arm/crypto/aesbs-glue.c | |||
@@ -13,6 +13,7 @@ | |||
13 | #include <crypto/ablk_helper.h> | 13 | #include <crypto/ablk_helper.h> |
14 | #include <crypto/algapi.h> | 14 | #include <crypto/algapi.h> |
15 | #include <linux/module.h> | 15 | #include <linux/module.h> |
16 | #include <crypto/xts.h> | ||
16 | 17 | ||
17 | #include "aes_glue.h" | 18 | #include "aes_glue.h" |
18 | 19 | ||
diff --git a/arch/arm64/crypto/aes-glue.c b/arch/arm64/crypto/aes-glue.c index c963d75ac605..897ad140ecc2 100644 --- a/arch/arm64/crypto/aes-glue.c +++ b/arch/arm64/crypto/aes-glue.c | |||
@@ -15,6 +15,7 @@ | |||
15 | #include <crypto/algapi.h> | 15 | #include <crypto/algapi.h> |
16 | #include <linux/module.h> | 16 | #include <linux/module.h> |
17 | #include <linux/cpufeature.h> | 17 | #include <linux/cpufeature.h> |
18 | #include <crypto/xts.h> | ||
18 | 19 | ||
19 | #include "aes-ce-setkey.h" | 20 | #include "aes-ce-setkey.h" |
20 | 21 | ||
diff --git a/arch/powerpc/crypto/aes-spe-glue.c b/arch/powerpc/crypto/aes-spe-glue.c index 160807977abe..ab113198ed20 100644 --- a/arch/powerpc/crypto/aes-spe-glue.c +++ b/arch/powerpc/crypto/aes-spe-glue.c | |||
@@ -22,6 +22,7 @@ | |||
22 | #include <asm/byteorder.h> | 22 | #include <asm/byteorder.h> |
23 | #include <asm/switch_to.h> | 23 | #include <asm/switch_to.h> |
24 | #include <crypto/algapi.h> | 24 | #include <crypto/algapi.h> |
25 | #include <crypto/xts.h> | ||
25 | 26 | ||
26 | /* | 27 | /* |
27 | * MAX_BYTES defines the number of bytes that are allowed to be processed | 28 | * MAX_BYTES defines the number of bytes that are allowed to be processed |
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 @@ | |||
27 | #include <linux/cpufeature.h> | 27 | #include <linux/cpufeature.h> |
28 | #include <linux/init.h> | 28 | #include <linux/init.h> |
29 | #include <linux/spinlock.h> | 29 | #include <linux/spinlock.h> |
30 | #include <crypto/xts.h> | ||
30 | #include "crypt_s390.h" | 31 | #include "crypt_s390.h" |
31 | 32 | ||
32 | #define AES_KEYLEN_128 1 | 33 | #define AES_KEYLEN_128 1 |