From: Luo penghao <luo.peng...@zte.com.cn>

The first assignment is not used. In order to keep the code style
consistency of the whole file, the first 'data' assignment should be
deleted.

The clang_analyzer complains as follows:

drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c:2608:10: warning:
Although the value storedto 'offset' is used in the enclosing expression,
the value is never actually read from 'offset'.

Reported-by: Zeal Robot <zea...@zte.com.cn>
Signed-off-by: Luo penghao <luo.peng...@zte.com.cn>
---
 drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c 
b/drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c
index 6a8dade..84a5f22 100644
--- a/drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c
@@ -2605,7 +2605,7 @@ static void gfx_v6_0_enable_mgcg(struct amdgpu_device 
*adev, bool enable)
        u32 data, orig, tmp = 0;
 
        if (enable && (adev->cg_flags & AMD_CG_SUPPORT_GFX_MGCG)) {
-               orig = data = RREG32(mmCGTS_SM_CTRL_REG);
+               orig = RREG32(mmCGTS_SM_CTRL_REG);
                data = 0x96940200;
                if (orig != data)
                        WREG32(mmCGTS_SM_CTRL_REG, data);
@@ -2617,7 +2617,7 @@ static void gfx_v6_0_enable_mgcg(struct amdgpu_device 
*adev, bool enable)
                                WREG32(mmCP_MEM_SLP_CNTL, data);
                }
 
-               orig = data = RREG32(mmRLC_CGTT_MGCG_OVERRIDE);
+               orig = RREG32(mmRLC_CGTT_MGCG_OVERRIDE);
                data &= 0xffffffc0;
                if (orig != data)
                        WREG32(mmRLC_CGTT_MGCG_OVERRIDE, data);
-- 
2.15.2


Reply via email to