Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9e519bc8 authored by Chris Wilson's avatar Chris Wilson
Browse files

drm/i915: Add some newlines to intel_engine_dump() headers



The headers should be on a separate line for consistency, so add the
missing trailing newline in a few intel_engine_dump() callers.

Reported-by: default avatarMika Kuoppala <mika.kuoppala@linux.intel.com>
Signed-off-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Cc: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Reviewed-by: default avatarMika Kuoppala <mika.kuoppala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20180205100618.11001-1-chris@chris-wilson.co.uk
parent 302e55d7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3644,7 +3644,7 @@ static int wait_for_engines(struct drm_i915_private *i915)

			for_each_engine(engine, i915, id)
				intel_engine_dump(engine, &p,
						  "%s", engine->name);
						  "%s\n", engine->name);
		}

		i915_gem_set_wedged(i915);
+1 −1
Original line number Diff line number Diff line
@@ -359,7 +359,7 @@ static void hangcheck_accumulate_sample(struct intel_engine_cs *engine,
	case ENGINE_DEAD:
		if (drm_debug & DRM_UT_DRIVER) {
			struct drm_printer p = drm_debug_printer("hangcheck");
			intel_engine_dump(engine, &p, "%s", engine->name);
			intel_engine_dump(engine, &p, "%s\n", engine->name);
		}
		break;