aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu/sdma_v5_2.c
diff options
context:
space:
mode:
authorZheng Bin <zhengbin13@huawei.com>2020-09-09 21:07:16 +0800
committerAlex Deucher <alexander.deucher@amd.com>2020-09-15 17:52:43 -0400
commit4bbbe77c15c633fae464ce7f7106762a1fe7c7a9 (patch)
tree7355e8da14460c976514c0b7a98b79e7d0beb395 /drivers/gpu/drm/amd/amdgpu/sdma_v5_2.c
parentdrm/amd/amdgpu: fix comparison pointer to bool warning in sdma_v5_0.c (diff)
downloadlinux-dev-4bbbe77c15c633fae464ce7f7106762a1fe7c7a9.tar.xz
linux-dev-4bbbe77c15c633fae464ce7f7106762a1fe7c7a9.zip
drm/amd/amdgpu: fix comparison pointer to bool warning in sdma_v5_2.c
Fixes coccicheck warning: drivers/gpu/drm/amd/amdgpu/sdma_v5_2.c:562: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/sdma_v5_2.c')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/sdma_v5_2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/sdma_v5_2.c b/drivers/gpu/drm/amd/amdgpu/sdma_v5_2.c
index 46a9617fee5f..34ccf376ee45 100644
--- a/drivers/gpu/drm/amd/amdgpu/sdma_v5_2.c
+++ b/drivers/gpu/drm/amd/amdgpu/sdma_v5_2.c
@@ -559,7 +559,7 @@ static void sdma_v5_2_enable(struct amdgpu_device *adev, bool enable)
u32 f32_cntl;
int i;
- if (enable == false) {
+ if (!enable) {
sdma_v5_2_gfx_stop(adev);
sdma_v5_2_rlc_stop(adev);
}