Commit 3d2fac0e authored by Zhen Lei's avatar Zhen Lei Committed by Miquel Raynal
Browse files

mtd: amd76xrom: 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/20210610022631.15344-1-thunder.leizhen@huawei.com
parent 042bf272
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -189,9 +189,7 @@ static int amd76xrom_init_one(struct pci_dev *pdev,

		if (!map) {
			map = kmalloc(sizeof(*map), GFP_KERNEL);
		}
		if (!map) {
			printk(KERN_ERR MOD_NAME ": kmalloc failed");
			if (!map)
				goto out;
		}
		memset(map, 0, sizeof(*map));