Commit 1f768ba4 authored by Yang Li's avatar Yang Li Committed by Alex Deucher

drm/amd/display: Simplify bool conversion

The result of 'pwr_status == 0' is Boolean, and the question mark
expression is redundant.

Link: https://bugzilla.openanolis.cn/show_bug.cgi?id=2354Reported-by: default avatarAbaci Robot <abaci@linux.alibaba.com>
Reviewed-by: default avatarHarry Wentland <harry.wentland@amd.com>
Signed-off-by: default avatarYang Li <yang.lee@linux.alibaba.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent a8950148
......@@ -1400,7 +1400,7 @@ bool dcn32_dsc_pg_status(
break;
}
return pwr_status == 0 ? true : false;
return pwr_status == 0;
}
void dcn32_update_dsc_pg(struct dc *dc,
......
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