projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4bbbe77
)
drm/amd/amdgpu: fix comparison pointer to bool warning in si.c
author
Zheng Bin
<zhengbin13@huawei.com>
Wed, 9 Sep 2020 13:07:17 +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/si.c:1342:5-10: 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/si.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/amd/amdgpu/si.c
b/drivers/gpu/drm/amd/amdgpu/si.c
index 455d5e366c69030827d614fbd06f10f645b4ce4b..e5e336fd9e94176ffbb7db39fd3223627039b548 100644
(file)
--- a/
drivers/gpu/drm/amd/amdgpu/si.c
+++ b/
drivers/gpu/drm/amd/amdgpu/si.c
@@
-1339,7
+1339,7
@@
static void si_vga_set_state(struct amdgpu_device *adev, bool state)
uint32_t temp;
temp = RREG32(CONFIG_CNTL);
- if (
state == fals
e) {
+ if (
!stat
e) {
temp &= ~(1<<0);
temp |= (1<<1);
} else {