projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e66cdf2
)
drm/amd/amdgpu: fix comparison pointer to bool warning in uvd_v6_0.c
author
Zheng Bin
<zhengbin13@huawei.com>
Wed, 9 Sep 2020 13:07:18 +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/uvd_v6_0.c:1243:14-25: 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/uvd_v6_0.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c
b/drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c
index 0a880bc101b8470fc3116f254082229fdc333d61..ed30fb48b9dbf4f0f9d7780f085be4c284aa149e 100644
(file)
--- a/
drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c
+++ b/
drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c
@@
-1240,8
+1240,8
@@
static int uvd_v6_0_process_interrupt(struct amdgpu_device *adev,
break;
}
- if (
false ==
int_handled)
-
DRM_ERROR("Unhandled interrupt: %d %d\n",
+ if (
!
int_handled)
+ DRM_ERROR("Unhandled interrupt: %d %d\n",
entry->src_id, entry->src_data[0]);
return 0;