diff options
Diffstat (limited to 'drivers/crypto/qce/common.h')
| -rw-r--r-- | drivers/crypto/qce/common.h | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/crypto/qce/common.h b/drivers/crypto/qce/common.h index 47fb523357ac..282d4317470d 100644 --- a/drivers/crypto/qce/common.h +++ b/drivers/crypto/qce/common.h @@ -10,6 +10,7 @@  #include <linux/types.h>  #include <crypto/aes.h>  #include <crypto/hash.h> +#include <crypto/internal/skcipher.h>  /* key size in bytes */  #define QCE_SHA_HMAC_KEY_SIZE		64 @@ -79,7 +80,7 @@ struct qce_alg_template {  	unsigned long alg_flags;  	const u32 *std_iv;  	union { -		struct crypto_alg crypto; +		struct skcipher_alg skcipher;  		struct ahash_alg ahash;  	} alg;  	struct qce_device *qce;  |