aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Fergeau <[email protected]>2016-11-08 10:12:05 +0100
committerGerd Hoffmann <[email protected]>2016-11-15 09:45:31 +0100
commit00d7d642702240ac14fb37bb0f95ce4e12879f40 (patch)
tree96e4fa8519ef27c768fe89f93cf62b99cd39c037
parent86c792aa22d6fc262f7533ca6cad373300ae4830 (diff)
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 <[email protected]> Acked-by: Frediano Ziglio <[email protected]> Message-id: [email protected] Signed-off-by: Gerd Hoffmann <[email protected]>
-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;