video/console/sticore: Delete an error message for a failed memory allocation in sti_try_rom_generic()
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 <elfring@users.sourceforge.net> Cc: Helge Deller <deller@gmx.de> Cc: "James E. J. Bottomley" <jejb@parisc-linux.org> Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
This commit is contained in:
parent
d6f586163f
commit
3af04d5c45
|
@ -827,10 +827,8 @@ static struct sti_struct *sti_try_rom_generic(unsigned long address,
|
||||||
}
|
}
|
||||||
|
|
||||||
sti = kzalloc(sizeof(*sti), GFP_KERNEL);
|
sti = kzalloc(sizeof(*sti), GFP_KERNEL);
|
||||||
if (!sti) {
|
if (!sti)
|
||||||
printk(KERN_ERR "Not enough memory !\n");
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
|
||||||
|
|
||||||
spin_lock_init(&sti->lock);
|
spin_lock_init(&sti->lock);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue