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

Commit 2844a921 authored by Damien Lespiau's avatar Damien Lespiau Committed by Daniel Vetter
Browse files

drm/i915: Use pipe_name() in the get_plane_config() functions



We may as well try to be consistent everywhere and know the pipes by
their name.

Reviewed-By: default avatarTvrtko Ursulin <tvrtko.ursulin@intel.com>
Signed-off-by: default avatarDamien Lespiau <damien.lespiau@intel.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent aeee5a49
Loading
Loading
Loading
Loading
+8 −6
Original line number Diff line number Diff line
@@ -6596,9 +6596,10 @@ static void i9xx_get_plane_config(struct intel_crtc *crtc,

	plane_config->size = PAGE_ALIGN(fb->pitches[0] * aligned_height);

	DRM_DEBUG_KMS("pipe/plane %d/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
		      pipe, plane, fb->width, fb->height, fb->bits_per_pixel,
		      base, fb->pitches[0], plane_config->size);
	DRM_DEBUG_KMS("pipe/plane %c/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
		      pipe_name(pipe), plane, fb->width, fb->height,
		      fb->bits_per_pixel, base, fb->pitches[0],
		      plane_config->size);

	crtc->base.primary->fb = fb;
}
@@ -7647,9 +7648,10 @@ static void ironlake_get_plane_config(struct intel_crtc *crtc,

	plane_config->size = PAGE_ALIGN(fb->pitches[0] * aligned_height);

	DRM_DEBUG_KMS("pipe %d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
		      pipe, fb->width, fb->height, fb->bits_per_pixel,
		      base, fb->pitches[0], plane_config->size);
	DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
		      pipe_name(pipe), fb->width, fb->height,
		      fb->bits_per_pixel, base, fb->pitches[0],
		      plane_config->size);

	crtc->base.primary->fb = fb;
}