summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2016-09-12 06:24:21 -0400
committerTomi Valkeinen <tomi.valkeinen@ti.com>2016-09-27 04:08:15 -0400
commit3f3ed26ba2306e672eedd3604fbc24db1dc92eb4 (patch)
tree70dbe258013e4e8877dd3b655bac5803d0c85cdc
parent1c065770d04050312eb534434e7b4f45e17e831f (diff)
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 <colin.king@canonical.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
-rw-r--r--drivers/video/fbdev/s1d13xxxfb.c2
1 files changed, 1 insertions, 1 deletions
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)
929 s1dfb->disp_save = kmalloc(info->fix.smem_len, GFP_KERNEL); 929 s1dfb->disp_save = kmalloc(info->fix.smem_len, GFP_KERNEL);
930 930
931 if (!s1dfb->disp_save) { 931 if (!s1dfb->disp_save) {
932 printk(KERN_ERR PFX "no memory to save screen"); 932 printk(KERN_ERR PFX "no memory to save screen\n");
933 return -ENOMEM; 933 return -ENOMEM;
934 } 934 }
935 935