提交 00f3b8f1 编写于 作者: M Markus Elfring 提交者: Bartlomiej Zolnierkiewicz

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: NMarkus Elfring <elfring@users.sourceforge.net>
Acked-by: NJingoo Han <jingoohan1@gmail.com>
Signed-off-by: NBartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
上级 d43f4b5d
...@@ -1384,10 +1384,8 @@ static int s3c_fb_probe(struct platform_device *pdev) ...@@ -1384,10 +1384,8 @@ static int s3c_fb_probe(struct platform_device *pdev)
} }
sfb = devm_kzalloc(dev, sizeof(struct s3c_fb), GFP_KERNEL); sfb = devm_kzalloc(dev, sizeof(struct s3c_fb), GFP_KERNEL);
if (!sfb) { if (!sfb)
dev_err(dev, "no memory for framebuffers\n");
return -ENOMEM; return -ENOMEM;
}
dev_dbg(dev, "allocate new framebuffer %p\n", sfb); dev_dbg(dev, "allocate new framebuffer %p\n", sfb);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册