crypto: xilinx - Remove set but not used variable 'drv_ctx'
authorYueHaibing <yuehaibing@huawei.com>
Tue, 5 May 2020 10:12:00 +0000 (10:12 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 5 May 2020 10:35:07 +0000 (12:35 +0200)
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>
drivers/crypto/xilinx/zynqmp-aes-gcm.c

index a27e3550d2e8bb3ae468bf4e583f3872ce929b38..cd11558893cd1f75417f13fc53acfab5f150a222 100644 (file)
@@ -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;