aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/crypto/xilinx/zynqmp-aes-gcm.c
diff options
context:
space:
mode:
authorYueHaibing <yuehaibing@huawei.com>2020-05-05 10:12:00 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-05-05 12:35:07 +0200
commit378c1ee2227f67d4dbb748ff5193c959d5299095 (patch)
tree3056cb77e32c9477cb954b32c3bb61586ab1c08f /drivers/crypto/xilinx/zynqmp-aes-gcm.c
parentcrypto: xilinx: Handle AES PM API return status (diff)
downloadlinux-dev-378c1ee2227f67d4dbb748ff5193c959d5299095.tar.xz
linux-dev-378c1ee2227f67d4dbb748ff5193c959d5299095.zip
crypto: xilinx - Remove set but not used variable 'drv_ctx'
Fixes gcc '-Wunused-but-set-variable' warning: drivers/crypto/xilinx/zynqmp-aes-gcm.c: In function 'zynqmp_aes_aead_cipher': drivers/crypto/xilinx/zynqmp-aes-gcm.c:83:30: warning: variable 'drv_ctx' set but not used [-Wunused-but-set-variable] commit bc86f9c54616 ("firmware: xilinx: Remove eemi ops for aes engine") left behind this, remove it. Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: YueHaibing <yuehaibing@huawei.com> Link: https://lore.kernel.org/r/20200505101200.195184-1-yuehaibing@huawei.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/crypto/xilinx/zynqmp-aes-gcm.c')
-rw-r--r--drivers/crypto/xilinx/zynqmp-aes-gcm.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/crypto/xilinx/zynqmp-aes-gcm.c b/drivers/crypto/xilinx/zynqmp-aes-gcm.c
index a27e3550d2e8..cd11558893cd 100644
--- a/drivers/crypto/xilinx/zynqmp-aes-gcm.c
+++ b/drivers/crypto/xilinx/zynqmp-aes-gcm.c
@@ -79,8 +79,6 @@ static int zynqmp_aes_aead_cipher(struct aead_request *req)
struct zynqmp_aead_tfm_ctx *tfm_ctx = crypto_aead_ctx(aead);
struct zynqmp_aead_req_ctx *rq_ctx = aead_request_ctx(req);
struct device *dev = tfm_ctx->dev;
- struct aead_alg *alg = crypto_aead_alg(aead);
- struct zynqmp_aead_drv_ctx *drv_ctx;
struct zynqmp_aead_hw_req *hwreq;
dma_addr_t dma_addr_data, dma_addr_hw_req;
unsigned int data_size;
@@ -90,8 +88,6 @@ static int zynqmp_aes_aead_cipher(struct aead_request *req)
char *kbuf;
int err;
- drv_ctx = container_of(alg, struct zynqmp_aead_drv_ctx, alg.aead);
-
if (tfm_ctx->keysrc == ZYNQMP_AES_KUP_KEY)
dma_size = req->cryptlen + ZYNQMP_AES_KEY_SIZE
+ GCM_AES_IV_SIZE;