From: Colin Ian King Date: Mon, 12 Sep 2016 10:24:21 +0000 (+0100) Subject: video: fbdev: add missing \n at end of printk error message X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=3f3ed26ba2306e672eedd3604fbc24db1dc92eb4;p=linux-beck.git video: fbdev: add missing \n at end of printk error message The message is missing a \n, add it. Signed-off-by: Colin Ian King Signed-off-by: Tomi Valkeinen --- diff --git a/drivers/video/fbdev/s1d13xxxfb.c b/drivers/video/fbdev/s1d13xxxfb.c index 96aa46dc696c..6a271d800a53 100644 --- a/drivers/video/fbdev/s1d13xxxfb.c +++ b/drivers/video/fbdev/s1d13xxxfb.c @@ -929,7 +929,7 @@ static int s1d13xxxfb_suspend(struct platform_device *dev, pm_message_t state) s1dfb->disp_save = kmalloc(info->fix.smem_len, GFP_KERNEL); if (!s1dfb->disp_save) { - printk(KERN_ERR PFX "no memory to save screen"); + printk(KERN_ERR PFX "no memory to save screen\n"); return -ENOMEM; }