diff mbox series

[-next,6/8] drm/amd/amdgpu: fix comparison pointer to bool warning in uvd_v6_0.c

Message ID 20200909130720.105234-7-zhengbin13@huawei.com (mailing list archive)
State New, archived
Headers show
Series drm/amd/amdgpu: fix comparison pointer to bool warning | expand

Commit Message

Zheng Bin Sept. 9, 2020, 1:07 p.m. UTC
Fixes coccicheck warning:

drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c:1243:14-25: WARNING: Comparison to bool

Signed-off-by: Zheng Bin <zhengbin13@huawei.com>
---
 drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

--
2.26.0.106.g9fadedd
diff mbox series

Patch

diff --git a/drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c b/drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c
index 0a880bc101b8..ed30fb48b9db 100644
--- 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;