mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
mtd: sun_uflash: remove unnecessary oom message
Fixes scripts/checkpatch.pl warning: WARNING: Possible unnecessary 'out of memory' message Remove it can help us save a bit of memory. Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com> Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> Link: https://lore.kernel.org/linux-mtd/20210610021400.15132-1-thunder.leizhen@huawei.com
This commit is contained in:
parent
313ea21aee
commit
4a7bd5e966
@ -62,10 +62,8 @@ int uflash_devinit(struct platform_device *op, struct device_node *dp)
|
||||
}
|
||||
|
||||
up = kzalloc(sizeof(struct uflash_dev), GFP_KERNEL);
|
||||
if (!up) {
|
||||
printk(KERN_ERR PFX "Cannot allocate struct uflash_dev\n");
|
||||
if (!up)
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
/* copy defaults and tweak parameters */
|
||||
memcpy(&up->map, &uflash_map_templ, sizeof(uflash_map_templ));
|
||||
|
Loading…
Reference in New Issue
Block a user