video: fbdev: add missing \n at end of printk error message
authorColin Ian King <colin.king@canonical.com>
Mon, 12 Sep 2016 10:24:21 +0000 (11:24 +0100)
committerTomi Valkeinen <tomi.valkeinen@ti.com>
Tue, 27 Sep 2016 08:08:15 +0000 (11:08 +0300)
The message is missing a \n, add it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
drivers/video/fbdev/s1d13xxxfb.c

index 96aa46d..6a271d8 100644 (file)
@@ -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;
        }