drm/xe: Remove additional spaces in devcoredump HW Engines section
authorJosé Roberto de Souza <jose.souza@intel.com>
Tue, 23 Jan 2024 20:44:52 +0000 (12:44 -0800)
committerJosé Roberto de Souza <jose.souza@intel.com>
Wed, 24 Jan 2024 19:08:26 +0000 (11:08 -0800)
I guess the indention was to keep it visually aligned but that
would require a lot of spaces and was not followed by other registers
so lets just drop it.

Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Maarten Lankhorst <dev@lankhorst.se>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: José Roberto de Souza <jose.souza@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240123204454.246788-7-jose.souza@intel.com
drivers/gpu/drm/xe/xe_hw_engine.c

index f7d66b71f1d717be96f81f9c6fd050ffe576c5ec..0d17e32d70c87d0feab5a853c2c88b36fa4febdc 100644 (file)
@@ -838,17 +838,17 @@ void xe_hw_engine_snapshot_print(struct xe_hw_engine_snapshot *snapshot,
        drm_printf(p, "\tRING_EXECLIST_SQ_CONTENTS: 0x%016llx\n",
                   snapshot->reg.ring_execlist_sq_contents);
        drm_printf(p, "\tRING_START: 0x%08x\n", snapshot->reg.ring_start);
-       drm_printf(p, "\tRING_HEAD:  0x%08x\n", snapshot->reg.ring_head);
-       drm_printf(p, "\tRING_TAIL:  0x%08x\n", snapshot->reg.ring_tail);
+       drm_printf(p, "\tRING_HEAD: 0x%08x\n", snapshot->reg.ring_head);
+       drm_printf(p, "\tRING_TAIL: 0x%08x\n", snapshot->reg.ring_tail);
        drm_printf(p, "\tRING_CTL: 0x%08x\n", snapshot->reg.ring_ctl);
        drm_printf(p, "\tRING_MI_MODE: 0x%08x\n", snapshot->reg.ring_mi_mode);
        drm_printf(p, "\tRING_MODE: 0x%08x\n",
                   snapshot->reg.ring_mode);
-       drm_printf(p, "\tRING_IMR:   0x%08x\n", snapshot->reg.ring_imr);
-       drm_printf(p, "\tRING_ESR:   0x%08x\n", snapshot->reg.ring_esr);
-       drm_printf(p, "\tRING_EMR:   0x%08x\n", snapshot->reg.ring_emr);
-       drm_printf(p, "\tRING_EIR:   0x%08x\n", snapshot->reg.ring_eir);
-       drm_printf(p, "\tACTHD:  0x%016llx\n", snapshot->reg.ring_acthd);
+       drm_printf(p, "\tRING_IMR: 0x%08x\n", snapshot->reg.ring_imr);
+       drm_printf(p, "\tRING_ESR: 0x%08x\n", snapshot->reg.ring_esr);
+       drm_printf(p, "\tRING_EMR: 0x%08x\n", snapshot->reg.ring_emr);
+       drm_printf(p, "\tRING_EIR: 0x%08x\n", snapshot->reg.ring_eir);
+       drm_printf(p, "\tACTHD: 0x%016llx\n", snapshot->reg.ring_acthd);
        drm_printf(p, "\tBBADDR: 0x%016llx\n", snapshot->reg.ring_bbaddr);
        drm_printf(p, "\tDMA_FADDR: 0x%016llx\n", snapshot->reg.ring_dma_fadd);
        drm_printf(p, "\tIPEHR: 0x%08x\n", snapshot->reg.ipehr);