projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
960a06f
)
drm/amd/amdgpu: fix comparison pointer to bool warning in sdma_v5_2.c
author
Zheng Bin
<zhengbin13@huawei.com>
Wed, 9 Sep 2020 13:07:16 +0000
(21:07 +0800)
committer
Alex Deucher
<alexander.deucher@amd.com>
Tue, 15 Sep 2020 21:52:43 +0000
(17:52 -0400)
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>
drivers/gpu/drm/amd/amdgpu/sdma_v5_2.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/amd/amdgpu/sdma_v5_2.c
b/drivers/gpu/drm/amd/amdgpu/sdma_v5_2.c
index 46a9617fee5f4135f476e5c7d78759c509db72aa..34ccf376ee45ece9725d1117c4c95656ddbf6d1b 100644
(file)
--- 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 == fals
e) {
+ if (
!enabl
e) {
sdma_v5_2_gfx_stop(adev);
sdma_v5_2_rlc_stop(adev);
}