projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7b3fa67
)
drm/amd/amdgpu: fix comparison pointer to bool warning in gfx_v10_0.c
author
Zheng Bin
<zhengbin13@huawei.com>
Wed, 9 Sep 2020 13:07:14 +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/gfx_v10_0.c:3563:5-31: 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/gfx_v10_0.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c
b/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c
index 9801bb6daa016dde9832e5de3dfbe6c1c103d44b..17fb2efdadd3c14ee51aa2499ae8326303d443a6 100644
(file)
--- a/
drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c
+++ b/
drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c
@@
-3560,7
+3560,7
@@
static void gfx_v10_0_check_fw_write_wait(struct amdgpu_device *adev)
break;
}
- if (
adev->gfx.cp_fw_write_wait == false
)
+ if (
!adev->gfx.cp_fw_write_wait
)
DRM_WARN_ONCE("CP firmware version too old, please update!");
}