]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
qxl: Add missing '\n' to qxl_io_log() call
authorChristophe Fergeau <cfergeau@redhat.com>
Tue, 8 Nov 2016 09:12:05 +0000 (10:12 +0100)
committerGerd Hoffmann <kraxel@redhat.com>
Tue, 15 Nov 2016 08:45:31 +0000 (09:45 +0100)
The message has to be terminated by a newline as it's not going to get
added automatically.

Signed-off-by: Christophe Fergeau <cfergeau@redhat.com>
Acked-by: Frediano Ziglio <fziglio@redhat.com>
Message-id: 20161108091209.25568-4-cfergeau@redhat.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
drivers/gpu/drm/qxl/qxl_fb.c

index 2cd879a4ae15643cd7a1f72e1644d87a7a50c6d6..0d16107f190938795e980d77ea24776f8072d164 100644 (file)
@@ -197,7 +197,7 @@ static int qxlfb_framebuffer_dirty(struct drm_framebuffer *fb,
        /*
         * we are using a shadow draw buffer, at qdev->surface0_shadow
         */
-       qxl_io_log(qdev, "dirty x[%d, %d], y[%d, %d]", clips->x1, clips->x2,
+       qxl_io_log(qdev, "dirty x[%d, %d], y[%d, %d]\n", clips->x1, clips->x2,
                   clips->y1, clips->y2);
        image->dx = clips->x1;
        image->dy = clips->y1;