aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu/jpeg_v4_0.c
diff options
context:
space:
mode:
authorRuan Jinjie <[email protected]>2023-08-04 02:46:48 +0000
committerAlex Deucher <[email protected]>2023-08-09 13:39:56 +0000
commit3b780089fd6eae8afdba4b8343af3418e5b45a5b (patch)
tree344c42347bf6dfb5ec9c304a2112b646ba5208f3 /drivers/gpu/drm/amd/amdgpu/jpeg_v4_0.c
parentdrm/amd/display: Return value of function (diff)
downloadkernel-3b780089fd6eae8afdba4b8343af3418e5b45a5b.tar.gz
kernel-3b780089fd6eae8afdba4b8343af3418e5b45a5b.zip
drm/amdgpu: Remove a lot of unnecessary ternary operators
There are many ternary operators, the true or false judgement of which is unnecessary in C language semantics. Signed-off-by: Ruan Jinjie <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/jpeg_v4_0.c')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/jpeg_v4_0.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/jpeg_v4_0.c b/drivers/gpu/drm/amd/amdgpu/jpeg_v4_0.c
index a707d407fbd0..3eb3dcd56b57 100644
--- a/drivers/gpu/drm/amd/amdgpu/jpeg_v4_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/jpeg_v4_0.c
@@ -626,7 +626,7 @@ static int jpeg_v4_0_set_clockgating_state(void *handle,
enum amd_clockgating_state state)
{
struct amdgpu_device *adev = (struct amdgpu_device *)handle;
- bool enable = (state == AMD_CG_STATE_GATE) ? true : false;
+ bool enable = state == AMD_CG_STATE_GATE;
if (enable) {
if (!jpeg_v4_0_is_idle(handle))