From: Christophe JAILLET Date: Thu, 9 Nov 2017 17:09:28 +0000 (+0100) Subject: video: fbdev: au1200fb: Release some resources if a memory allocation fails X-Git-Tag: v5.15~6020^2~306 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=451f130602619a17c8883dd0b71b11624faffd51;p=platform%2Fkernel%2Flinux-starfive.git video: fbdev: au1200fb: Release some resources if a memory allocation fails We should go through the error handling code instead of returning -ENOMEM directly. Signed-off-by: Christophe JAILLET Cc: Tejun Heo Signed-off-by: Bartlomiej Zolnierkiewicz --- diff --git a/drivers/video/fbdev/au1200fb.c b/drivers/video/fbdev/au1200fb.c index 7fa4102..cf54168 100644 --- a/drivers/video/fbdev/au1200fb.c +++ b/drivers/video/fbdev/au1200fb.c @@ -1702,7 +1702,8 @@ static int au1200fb_drv_probe(struct platform_device *dev) if (!fbdev->fb_mem) { print_err("fail to allocate frambuffer (size: %dK))", fbdev->fb_len / 1024); - return -ENOMEM; + ret = -ENOMEM; + goto failed; } /*