Skip to content

Commit

Permalink
drm/amd/amdgpu: fix comparison pointer to bool warning in uvd_v6_0.c
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Zheng Bin authored and Alex Deucher committed Sep 15, 2020
1 parent e66cdf2 commit 3d0c75a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 3d0c75a

Please sign in to comment.