aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Elfring <elfring@users.sourceforge.net>2018-03-28 10:34:28 -0400
committerBartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>2018-03-28 10:34:28 -0400
commit00f3b8f1cf1b4711e91a543ebe1289b7415150cd (patch)
tree6319c3a674d92b638b9132116b7fc4341f7530e9
parentd43f4b5d50837ea4f0713b101faf7a4cf069e4b6 (diff)
video: s3c-fb: Delete an error message for a failed memory allocation in s3c_fb_probe()
Omit an extra message for a memory allocation failure in this function. This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Acked-by: Jingoo Han <jingoohan1@gmail.com> Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
-rw-r--r--drivers/video/fbdev/s3c-fb.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/video/fbdev/s3c-fb.c b/drivers/video/fbdev/s3c-fb.c
index 5f4f696c2ecf..0914c973cbd9 100644
--- a/drivers/video/fbdev/s3c-fb.c
+++ b/drivers/video/fbdev/s3c-fb.c
@@ -1384,10 +1384,8 @@ static int s3c_fb_probe(struct platform_device *pdev)
1384 } 1384 }
1385 1385
1386 sfb = devm_kzalloc(dev, sizeof(struct s3c_fb), GFP_KERNEL); 1386 sfb = devm_kzalloc(dev, sizeof(struct s3c_fb), GFP_KERNEL);
1387 if (!sfb) { 1387 if (!sfb)
1388 dev_err(dev, "no memory for framebuffers\n");
1389 return -ENOMEM; 1388 return -ENOMEM;
1390 }
1391 1389
1392 dev_dbg(dev, "allocate new framebuffer %p\n", sfb); 1390 dev_dbg(dev, "allocate new framebuffer %p\n", sfb);
1393 1391