summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/qxl
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2016-11-08 10:12:05 +0100
committerGerd Hoffmann <kraxel@redhat.com>2016-11-15 09:45:31 +0100
commit00d7d642702240ac14fb37bb0f95ce4e12879f40 (patch)
tree96e4fa8519ef27c768fe89f93cf62b99cd39c037 /drivers/gpu/drm/qxl
parent86c792aa22d6fc262f7533ca6cad373300ae4830 (diff)
downloadlinux-00d7d642702240ac14fb37bb0f95ce4e12879f40.tar.bz2
qxl: Add missing '\n' to qxl_io_log() call
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>
Diffstat (limited to 'drivers/gpu/drm/qxl')
-rw-r--r--drivers/gpu/drm/qxl/qxl_fb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/qxl/qxl_fb.c b/drivers/gpu/drm/qxl/qxl_fb.c
index 2cd879a4ae15..0d16107f1909 100644
--- a/drivers/gpu/drm/qxl/qxl_fb.c
+++ b/drivers/gpu/drm/qxl/qxl_fb.c
@@ -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;