drm/amdgpu: delete duplicate condition in gfx_v11_0_soft_reset()
We know that "grbm_soft_reset" is true because we're already inside an if (grbm_soft_reset) condition. No need to test again. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
7a09f61f8e
commit
4c1b3d0803
@ -4780,19 +4780,17 @@ static int gfx_v11_0_soft_reset(void *handle)
|
||||
/* Disable MEC parsing/prefetching */
|
||||
gfx_v11_0_cp_compute_enable(adev, false);
|
||||
|
||||
if (grbm_soft_reset) {
|
||||
tmp = RREG32_SOC15(GC, 0, regGRBM_SOFT_RESET);
|
||||
tmp |= grbm_soft_reset;
|
||||
dev_info(adev->dev, "GRBM_SOFT_RESET=0x%08X\n", tmp);
|
||||
WREG32_SOC15(GC, 0, regGRBM_SOFT_RESET, tmp);
|
||||
tmp = RREG32_SOC15(GC, 0, regGRBM_SOFT_RESET);
|
||||
tmp = RREG32_SOC15(GC, 0, regGRBM_SOFT_RESET);
|
||||
tmp |= grbm_soft_reset;
|
||||
dev_info(adev->dev, "GRBM_SOFT_RESET=0x%08X\n", tmp);
|
||||
WREG32_SOC15(GC, 0, regGRBM_SOFT_RESET, tmp);
|
||||
tmp = RREG32_SOC15(GC, 0, regGRBM_SOFT_RESET);
|
||||
|
||||
udelay(50);
|
||||
udelay(50);
|
||||
|
||||
tmp &= ~grbm_soft_reset;
|
||||
WREG32_SOC15(GC, 0, regGRBM_SOFT_RESET, tmp);
|
||||
tmp = RREG32_SOC15(GC, 0, regGRBM_SOFT_RESET);
|
||||
}
|
||||
tmp &= ~grbm_soft_reset;
|
||||
WREG32_SOC15(GC, 0, regGRBM_SOFT_RESET, tmp);
|
||||
tmp = RREG32_SOC15(GC, 0, regGRBM_SOFT_RESET);
|
||||
|
||||
/* Wait a little for things to settle down */
|
||||
udelay(50);
|
||||
|
Loading…
x
Reference in New Issue
Block a user