mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-30 08:02:30 +00:00
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>
This commit is contained in:
parent
960a06ff91
commit
4bbbe77c15
1 changed files with 1 additions and 1 deletions
|
@ -559,7 +559,7 @@ static void sdma_v5_2_enable(struct amdgpu_device *adev, bool enable)
|
||||||
u32 f32_cntl;
|
u32 f32_cntl;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
if (enable == false) {
|
if (!enable) {
|
||||||
sdma_v5_2_gfx_stop(adev);
|
sdma_v5_2_gfx_stop(adev);
|
||||||
sdma_v5_2_rlc_stop(adev);
|
sdma_v5_2_rlc_stop(adev);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue