diff options
author | Thara Gopinath <thara.gopinath@linaro.org> | 2021-02-11 15:01:27 -0500 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2021-03-07 15:13:17 +1100 |
commit | 62e4842842f3711b0674aa96742cfbec2c074d3f (patch) | |
tree | 6848ab5f3eff995f1c01309124041f3a1c185003 /drivers/crypto/qce | |
parent | 24cbcc9427a35ef95e2c7651a361e5b462f10b8e (diff) |
crypto: qce - Remover src_tbl from qce_cipher_reqctx
src_table is unused and hence remove it from struct qce_cipher_reqctx
Signed-off-by: Thara Gopinath <thara.gopinath@linaro.org>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/qce')
-rw-r--r-- | drivers/crypto/qce/cipher.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/crypto/qce/cipher.h b/drivers/crypto/qce/cipher.h index cffa9fc628ff..850f257d00f3 100644 --- a/drivers/crypto/qce/cipher.h +++ b/drivers/crypto/qce/cipher.h @@ -40,7 +40,6 @@ struct qce_cipher_reqctx { struct scatterlist result_sg; struct sg_table dst_tbl; struct scatterlist *dst_sg; - struct sg_table src_tbl; struct scatterlist *src_sg; unsigned int cryptlen; struct skcipher_request fallback_req; // keep at the end |