Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 21b4d1db authored by Roel Kluin's avatar Roel Kluin Committed by Linus Torvalds
Browse files

video/aty/atyfb_base.c: free when fb can't be registered



Free buffer when the framebuffer can't be registered

Signed-off-by: default avatarRoel Kluin <12o3l@tiscali.nl>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 57a7a6db
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -2621,10 +2621,13 @@ static int __devinit aty_init(struct fb_info *info)
#endif /* CONFIG_FB_ATY_CT */
	info->var = var;

	fb_alloc_cmap(&info->cmap, 256, 0);
	if (fb_alloc_cmap(&info->cmap, 256, 0) < 0)
		goto aty_init_exit;

	if (register_framebuffer(info) < 0)
	if (register_framebuffer(info) < 0) {
		fb_dealloc_cmap(&info->cmap);
		goto aty_init_exit;
	}

	fb_list = info;