Skip to content

Commit 1a24e09

Browse files
lumagrobclark
authored andcommitted
drm/msm/dpu: make danger_status/safe_status readable
Change \t to \n in the print format to stop putting all SSPP status in a single line. Splitting it to one SSPP per line is much more readable. Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Reviewed-by: Abhinav Kumar <quic_abhinavk@quicinc.com> Link: https://lore.kernel.org/r/20211201222633.2476780-4-dmitry.baryshkov@linaro.org Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Signed-off-by: Rob Clark <robdclark@chromium.org>
1 parent f31b0e2 commit 1a24e09

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/gpu/drm/msm/disp/dpu1/dpu_kms.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ static int _dpu_danger_signal_status(struct seq_file *s,
8282
seq_printf(s, "MDP : 0x%x\n", status.mdp);
8383

8484
for (i = SSPP_VIG0; i < SSPP_MAX; i++)
85-
seq_printf(s, "SSPP%d : 0x%x \t", i - SSPP_VIG0,
85+
seq_printf(s, "SSPP%d : 0x%x \n", i - SSPP_VIG0,
8686
status.sspp[i]);
8787
seq_puts(s, "\n");
8888

0 commit comments

Comments
 (0)