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

Commit f9815f94 authored by Markus Elfring's avatar Markus Elfring Committed by Bartlomiej Zolnierkiewicz
Browse files

video/fbdev/stifb: Return -ENOMEM after a failed kzalloc() in stifb_init_fb()



Replace an error code for the indication of a memory allocation failure
in this function.

Fixes: 1da177e4 ("Linux-2.6.12-rc2: Initial git repository build")
Suggested-by: default avatarRolf Eike Beer <eike-kernel@sf-tec.de>
Signed-off-by: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Cc: Helge Deller <deller@gmx.de>
Cc: "James E. J. Bottomley" <jejb@parisc-linux.org>
Signed-off-by: default avatarBartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
parent cfb810f8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1128,7 +1128,7 @@ static int __init stifb_init_fb(struct sti_struct *sti, int bpp_pref)
	fb = kzalloc(sizeof(*fb), GFP_ATOMIC);
	if (!fb) {
		printk(KERN_ERR "stifb: Could not allocate stifb structure\n");
		return -ENODEV;
		return -ENOMEM;
	}
	
	info = &fb->info;