Skip to content

Commit

Permalink
drm/msm/dpu: use drm_rect_fp_to_int()
Browse files Browse the repository at this point in the history
Use the drm_rect_fp_to_int() helper instead of using the hand-written
code.

Reviewed-by: Abhinav Kumar <quic_abhinavk@quicinc.com>
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Patchwork: https://patchwork.freedesktop.org/patch/621476/
Link: https://lore.kernel.org/r/20241025-dpu-virtual-wide-v6-1-0310fd519765@linaro.org
  • Loading branch information
Dmitry Baryshkov committed Nov 1, 2024
1 parent 26d841f commit 5002444
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions drivers/gpu/drm/msm/disp/dpu1/dpu_plane.c
Original file line number Diff line number Diff line change
Expand Up @@ -829,13 +829,8 @@ static int dpu_plane_atomic_check(struct drm_plane *plane,
return -EINVAL;
}

pipe_cfg->src_rect = new_plane_state->src;

/* state->src is 16.16, src_rect is not */
pipe_cfg->src_rect.x1 >>= 16;
pipe_cfg->src_rect.x2 >>= 16;
pipe_cfg->src_rect.y1 >>= 16;
pipe_cfg->src_rect.y2 >>= 16;
drm_rect_fp_to_int(&pipe_cfg->src_rect, &new_plane_state->src);

pipe_cfg->dst_rect = new_plane_state->dst;

Expand Down

0 comments on commit 5002444

Please sign in to comment.