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.barysh...@linaro.org>
---
 drivers/gpu/drm/msm/disp/dpu1/dpu_kms.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_kms.c 
b/drivers/gpu/drm/msm/disp/dpu1/dpu_kms.c
index e7f0cded2c6b..4c04982c71b2 100644
--- a/drivers/gpu/drm/msm/disp/dpu1/dpu_kms.c
+++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_kms.c
@@ -82,7 +82,7 @@ static int _dpu_danger_signal_status(struct seq_file *s,
        seq_printf(s, "MDP     :  0x%x\n", status.mdp);
 
        for (i = SSPP_VIG0; i < SSPP_MAX; i++)
-               seq_printf(s, "SSPP%d   :  0x%x  \t", i - SSPP_VIG0,
+               seq_printf(s, "SSPP%d   :  0x%x  \n", i - SSPP_VIG0,
                                status.sspp[i]);
        seq_puts(s, "\n");
 
-- 
2.33.0

Reply via email to