]> Git Repo - linux.git/commitdiff
drm/i915: Correct pipe fault reporting string
authorTvrtko Ursulin <[email protected]>
Thu, 27 Oct 2016 12:48:32 +0000 (13:48 +0100)
committerTvrtko Ursulin <[email protected]>
Thu, 27 Oct 2016 14:08:43 +0000 (15:08 +0100)
Newline somehow ended up in the middle of the line.

Signed-off-by: Tvrtko Ursulin <[email protected]>
Reviewed-by: Ville Syrjälä <[email protected]>
Reviewed-by: Chris Wilson <[email protected]>
Link: http://patchwork.freedesktop.org/patch/msgid/[email protected]
drivers/gpu/drm/i915/i915_irq.c

index 9111cfdf217a66b541179175c39b12a1d69f09d5..88239e1b29e48ddc707c65ca8a31dec0de1b0f10 100644 (file)
@@ -2503,7 +2503,7 @@ gen8_de_irq_handler(struct drm_i915_private *dev_priv, u32 master_ctl)
                        fault_errors &= GEN8_DE_PIPE_IRQ_FAULT_ERRORS;
 
                if (fault_errors)
-                       DRM_ERROR("Fault errors on pipe %c\n: 0x%08x",
+                       DRM_ERROR("Fault errors on pipe %c: 0x%08x\n",
                                  pipe_name(pipe),
                                  fault_errors);
        }
This page took 0.0695 seconds and 4 git commands to generate.