Skip to content

Commit

Permalink
drm/msm/dpu: Add newline to printks
Browse files Browse the repository at this point in the history
Printk messages need newlines. Add it here.

Cc: Abhinav Kumar <abhinavk@codeaurora.org>
Cc: Jeykumar Sankaran <jsanka@codeaurora.org>
Fixes: 25fdd59 ("drm/msm: Add SDM845 DPU support")
Signed-off-by: Stephen Boyd <swboyd@chromium.org>
Reviewed-by: Abhinav Kumar <abhinavk@codeaurora.org>
Signed-off-by: Rob Clark <robdclark@chromium.org>
  • Loading branch information
Stephen Boyd authored and Rob Clark committed Nov 4, 2020
1 parent 6625e26 commit 91693cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.c
Original file line number Diff line number Diff line change
Expand Up @@ -839,7 +839,7 @@ static int dpu_crtc_atomic_check(struct drm_crtc *crtc,
}

mode = &state->adjusted_mode;
DPU_DEBUG("%s: check", dpu_crtc->name);
DPU_DEBUG("%s: check\n", dpu_crtc->name);

/* force a full mode set if active state changed */
if (state->active_changed)
Expand Down Expand Up @@ -947,7 +947,7 @@ static int dpu_crtc_atomic_check(struct drm_crtc *crtc,
}

pstates[i].dpu_pstate->stage = z_pos + DPU_STAGE_0;
DPU_DEBUG("%s: zpos %d", dpu_crtc->name, z_pos);
DPU_DEBUG("%s: zpos %d\n", dpu_crtc->name, z_pos);
}

for (i = 0; i < multirect_count; i++) {
Expand Down

0 comments on commit 91693cb

Please sign in to comment.