Commit 4883307c authored by Zhen Lei's avatar Zhen Lei Committed by Miquel Raynal

mtd: ichxrom: 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: default avatarZhen Lei <thunder.leizhen@huawei.com>
Signed-off-by: default avatarMiquel Raynal <miquel.raynal@bootlin.com>
Link: https://lore.kernel.org/linux-mtd/20210610022100.15185-1-thunder.leizhen@huawei.com
parent 4a7bd5e9
...@@ -213,10 +213,8 @@ static int __init ichxrom_init_one(struct pci_dev *pdev, ...@@ -213,10 +213,8 @@ static int __init ichxrom_init_one(struct pci_dev *pdev,
if (!map) { if (!map) {
map = kmalloc(sizeof(*map), GFP_KERNEL); map = kmalloc(sizeof(*map), GFP_KERNEL);
} if (!map)
if (!map) { goto out;
printk(KERN_ERR MOD_NAME ": kmalloc failed");
goto out;
} }
memset(map, 0, sizeof(*map)); memset(map, 0, sizeof(*map));
INIT_LIST_HEAD(&map->list); INIT_LIST_HEAD(&map->list);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment