From: Zhou Wang Date: Wed, 14 Aug 2019 09:28:37 +0000 (+0800) Subject: crypto: hisilicon - init curr_sgl_dma to fix compile warning X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=5c0861989cc197c29433915774f805299a497977;p=uclinux-h8%2Flinux.git crypto: hisilicon - init curr_sgl_dma to fix compile warning Just init curr_sgl_dma = 0 to avoid compile warning. Fixes: dfed0098ab91 ("crypto: hisilicon - add hardware SGL support") Reported-by: kbuild test robot Signed-off-by: Zhou Wang Signed-off-by: Herbert Xu --- diff --git a/drivers/crypto/hisilicon/sgl.c b/drivers/crypto/hisilicon/sgl.c index 8ef7679a365e..e083d172b618 100644 --- a/drivers/crypto/hisilicon/sgl.c +++ b/drivers/crypto/hisilicon/sgl.c @@ -150,7 +150,7 @@ hisi_acc_sg_buf_map_to_hw_sgl(struct device *dev, u32 index, dma_addr_t *hw_sgl_dma) { struct hisi_acc_hw_sgl *curr_hw_sgl; - dma_addr_t curr_sgl_dma; + dma_addr_t curr_sgl_dma = 0; struct acc_hw_sge *curr_hw_sge; struct scatterlist *sg; int sg_n = sg_nents(sgl);