From 0c0287322069cfac97011b6d24d906a10cfd6b25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Syrj=C3=A4l=C3=A4?= Date: Fri, 12 Feb 2016 21:15:07 +0200 Subject: [PATCH] lib/igt_kms: Fix igt_fb_set_size() debug message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The debug message in igt_fb_set_size() was copy pasted from igt_fb_set_position() and not adjusted to say the right thing. Fix it up. Signed-off-by: Ville Syrjälä --- lib/igt_kms.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 90c8da7a..cfd7af31 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -1912,7 +1912,7 @@ void igt_fb_set_size(struct igt_fb *fb, igt_plane_t *plane, igt_pipe_t *pipe = plane->pipe; igt_display_t *display = pipe->display; - LOG(display, "%s.%d: fb_set_position(%dx%d)\n", + LOG(display, "%s.%d: fb_set_size(%dx%d)\n", kmstest_pipe_name(pipe->pipe), plane->index, w, h); fb->src_w = w;