Commit 74d83404 authored by Jinpeng Cui's avatar Jinpeng Cui Committed by Alex Deucher

drm/amd/display: remove redundant vertical_line_start variable

Return value from expression directly instead of
taking this in another redundant variable.
Reported-by: default avatarZeal Robot <zealci@zte.com.cn>
Signed-off-by: default avatarJinpeng Cui <cui.jinpeng2@zte.com.cn>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 9d84c7ef
...@@ -3776,7 +3776,6 @@ int dcn10_get_vupdate_offset_from_vsync(struct pipe_ctx *pipe_ctx) ...@@ -3776,7 +3776,6 @@ int dcn10_get_vupdate_offset_from_vsync(struct pipe_ctx *pipe_ctx)
int vesa_sync_start; int vesa_sync_start;
int asic_blank_end; int asic_blank_end;
int interlace_factor; int interlace_factor;
int vertical_line_start;
patched_crtc_timing = *dc_crtc_timing; patched_crtc_timing = *dc_crtc_timing;
apply_front_porch_workaround(&patched_crtc_timing); apply_front_porch_workaround(&patched_crtc_timing);
...@@ -3792,10 +3791,8 @@ int dcn10_get_vupdate_offset_from_vsync(struct pipe_ctx *pipe_ctx) ...@@ -3792,10 +3791,8 @@ int dcn10_get_vupdate_offset_from_vsync(struct pipe_ctx *pipe_ctx)
patched_crtc_timing.v_border_top) patched_crtc_timing.v_border_top)
* interlace_factor; * interlace_factor;
vertical_line_start = asic_blank_end - return asic_blank_end -
pipe_ctx->pipe_dlg_param.vstartup_start + 1; pipe_ctx->pipe_dlg_param.vstartup_start + 1;
return vertical_line_start;
} }
void dcn10_calc_vupdate_position( void dcn10_calc_vupdate_position(
......
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