From: Zheng Bin Date: Wed, 9 Sep 2020 13:07:16 +0000 (+0800) Subject: drm/amd/amdgpu: fix comparison pointer to bool warning in sdma_v5_2.c X-Git-Tag: io_uring-5.10-2020-10-20~48^2~11^2~54 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=4bbbe77c15c633fae464ce7f7106762a1fe7c7a9;p=linux-2.6-block.git 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 Signed-off-by: Zheng Bin Signed-off-by: Alex Deucher --- 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); }