From: SF Markus Elfring <hidden> Date: 2017-11-24 19:53:54
From: Markus Elfring <redacted>
Date: Fri, 24 Nov 2017 20:42:08 +0100
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 <redacted>
---
drivers/video/fbdev/vt8500lcdfb.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
On Friday, November 24, 2017 08:53:02 PM SF Markus Elfring wrote:
quoted hunk
From: Markus Elfring <redacted>
Date: Fri, 24 Nov 2017 20:42:08 +0100
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 <redacted>
---
drivers/video/fbdev/vt8500lcdfb.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
@@ -289,10 +289,8 @@ static int vt8500lcd_probe(struct platform_device *pdev)fbi=devm_kzalloc(&pdev->dev,sizeof(structvt8500lcd_info)+sizeof(u32)*16,GFP_KERNEL);-if(!fbi){-dev_err(&pdev->dev,"Failed to initialize framebuffer device\n");+if(!fbi)return-ENOMEM;-}
This removes the information about the device for which the allocation
fails (but as there can be only one vt8500lcdfb device in the system this
change is okay).
Patch queued for 4.16, thanks.
Best regards,
--
Bartlomiej Zolnierkiewicz
Samsung R&D Institute Poland
Samsung Electronics