mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-07 02:19:54 +00:00
video: fbdev: au1200fb: Release some resources if a memory allocation fails
[ Upstream commit 451f130602 ]
We should go through the error handling code instead of returning -ENOMEM
directly.
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Cc: Tejun Heo <tj@kernel.org>
Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Signed-off-by: Sasha Levin <alexander.levin@verizon.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
456279d0e3
commit
df235d2ee3
@@ -1701,7 +1701,8 @@ static int au1200fb_drv_probe(struct platform_device *dev)
|
|||||||
if (!fbdev->fb_mem) {
|
if (!fbdev->fb_mem) {
|
||||||
print_err("fail to allocate frambuffer (size: %dK))",
|
print_err("fail to allocate frambuffer (size: %dK))",
|
||||||
fbdev->fb_len / 1024);
|
fbdev->fb_len / 1024);
|
||||||
return -ENOMEM;
|
ret = -ENOMEM;
|
||||||
|
goto failed;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
Reference in New Issue
Block a user