diff options
| author | 2020-09-09 21:07:13 +0800 | |
|---|---|---|
| committer | 2020-09-15 17:52:43 -0400 | |
| commit | 7b3fa67d6e0aabb7eb0394608d481eb2aa65f22c (patch) | |
| tree | 4009ce183c7bd5d2a2756834c62e54b8c8832e7d /drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c | |
| parent | drm/radeon: Add sclk frequency as hwmon sensor (diff) | |
| download | wireguard-linux-7b3fa67d6e0aabb7eb0394608d481eb2aa65f22c.tar.xz wireguard-linux-7b3fa67d6e0aabb7eb0394608d481eb2aa65f22c.zip | |
drm/amd/amdgpu: fix comparison pointer to bool warning in gfx_v9_0.c
Fixes coccicheck warning:
drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c:2805:5-11: WARNING: Comparison to bool
Acked-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Zheng Bin <zhengbin13@huawei.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c index 93c63ff3b35e..d898c9ff3526 100644 --- a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c @@ -2800,7 +2800,7 @@ static void pwr_10_0_gfxip_control_over_cgpg(struct amdgpu_device *adev, uint32_t default_data = 0; default_data = data = RREG32(SOC15_REG_OFFSET(PWR, 0, mmPWR_MISC_CNTL_STATUS)); - if (enable == true) { + if (enable) { /* enable GFXIP control over CGPG */ data |= PWR_MISC_CNTL_STATUS__PWR_GFX_RLC_CGPG_EN_MASK; if(default_data != data) |
