Commit 49abc0d2 authored by Stephan Mueller's avatar Stephan Mueller Committed by Herbert Xu

crypto: xts - fix compile errors

Commit 28856a9e missed the addition of the crypto/xts.h include file
for different architecture-specific AES implementations.
Signed-off-by: default avatarStephan Mueller <smueller@chronox.de>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent ba871e1d
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
#include <crypto/ablk_helper.h> #include <crypto/ablk_helper.h>
#include <crypto/algapi.h> #include <crypto/algapi.h>
#include <linux/module.h> #include <linux/module.h>
#include <crypto/xts.h>
MODULE_DESCRIPTION("AES-ECB/CBC/CTR/XTS using ARMv8 Crypto Extensions"); MODULE_DESCRIPTION("AES-ECB/CBC/CTR/XTS using ARMv8 Crypto Extensions");
MODULE_AUTHOR("Ard Biesheuvel <ard.biesheuvel@linaro.org>"); MODULE_AUTHOR("Ard Biesheuvel <ard.biesheuvel@linaro.org>");
......
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
#include <crypto/ablk_helper.h> #include <crypto/ablk_helper.h>
#include <crypto/algapi.h> #include <crypto/algapi.h>
#include <linux/module.h> #include <linux/module.h>
#include <crypto/xts.h>
#include "aes_glue.h" #include "aes_glue.h"
......
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
#include <crypto/algapi.h> #include <crypto/algapi.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/cpufeature.h> #include <linux/cpufeature.h>
#include <crypto/xts.h>
#include "aes-ce-setkey.h" #include "aes-ce-setkey.h"
......
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
#include <asm/byteorder.h> #include <asm/byteorder.h>
#include <asm/switch_to.h> #include <asm/switch_to.h>
#include <crypto/algapi.h> #include <crypto/algapi.h>
#include <crypto/xts.h>
/* /*
* MAX_BYTES defines the number of bytes that are allowed to be processed * MAX_BYTES defines the number of bytes that are allowed to be processed
......
...@@ -27,6 +27,7 @@ ...@@ -27,6 +27,7 @@
#include <linux/cpufeature.h> #include <linux/cpufeature.h>
#include <linux/init.h> #include <linux/init.h>
#include <linux/spinlock.h> #include <linux/spinlock.h>
#include <crypto/xts.h>
#include "crypt_s390.h" #include "crypt_s390.h"
#define AES_KEYLEN_128 1 #define AES_KEYLEN_128 1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment