summaryrefslogtreecommitdiff
path: root/drivers/crypto/qce/cipher.h
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2016-06-29 18:04:04 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2016-07-01 23:45:09 +0800
commit2d20ce070d3b78f0974408ef648223967d0efb0a (patch)
tree13a056c6fc214875399f438a9bd54a5521c2155f /drivers/crypto/qce/cipher.h
parent1eb60ff82d822299b8b4fd685d1f85de87706c00 (diff)
crypto: qce - Use skcipher for fallback
This patch replaces use of the obsolete ablkcipher with skcipher. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/qce/cipher.h')
-rw-r--r--drivers/crypto/qce/cipher.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/crypto/qce/cipher.h b/drivers/crypto/qce/cipher.h
index 5c6a5f8633e5..2b0278bb6e92 100644
--- a/drivers/crypto/qce/cipher.h
+++ b/drivers/crypto/qce/cipher.h
@@ -22,7 +22,7 @@
struct qce_cipher_ctx {
u8 enc_key[QCE_MAX_KEY_SIZE];
unsigned int enc_keylen;
- struct crypto_ablkcipher *fallback;
+ struct crypto_skcipher *fallback;
};
/**