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 <[email protected]> Reviewed-by: Abhinav Kumar <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Dmitry Baryshkov <[email protected]> Signed-off-by: Rob Clark <[email protected]>
1 parent f31b0e2 commit 1a24e09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)