Commit ab2c1ea4 authored by zhengbin's avatar zhengbin Committed by Alex Deucher

drm/radeon: use true,false for bool variable in ni.c

Fixes coccicheck warning:

drivers/gpu/drm/radeon/ni.c:2020:2-15: WARNING: Assignment of 0/1 to bool variable
drivers/gpu/drm/radeon/ni.c:2088:2-15: WARNING: Assignment of 0/1 to bool variable
Reported-by: default avatarHulk Robot <hulkci@huawei.com>
Signed-off-by: default avatarzhengbin <zhengbin13@huawei.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 45b2de28
...@@ -2017,7 +2017,7 @@ static void cayman_uvd_init(struct radeon_device *rdev) ...@@ -2017,7 +2017,7 @@ static void cayman_uvd_init(struct radeon_device *rdev)
* there. So it is pointless to try to go through that code * there. So it is pointless to try to go through that code
* hence why we disable uvd here. * hence why we disable uvd here.
*/ */
rdev->has_uvd = 0; rdev->has_uvd = false;
return; return;
} }
rdev->ring[R600_RING_TYPE_UVD_INDEX].ring_obj = NULL; rdev->ring[R600_RING_TYPE_UVD_INDEX].ring_obj = NULL;
...@@ -2085,7 +2085,7 @@ static void cayman_vce_init(struct radeon_device *rdev) ...@@ -2085,7 +2085,7 @@ static void cayman_vce_init(struct radeon_device *rdev)
* there. So it is pointless to try to go through that code * there. So it is pointless to try to go through that code
* hence why we disable vce here. * hence why we disable vce here.
*/ */
rdev->has_vce = 0; rdev->has_vce = false;
return; return;
} }
rdev->ring[TN_RING_TYPE_VCE1_INDEX].ring_obj = NULL; rdev->ring[TN_RING_TYPE_VCE1_INDEX].ring_obj = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment