aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd
diff options
context:
space:
mode:
authorZhen Lei <thunder.leizhen@huawei.com>2021-06-10 10:12:01 +0800
committerMiquel Raynal <miquel.raynal@bootlin.com>2021-06-11 20:43:46 +0200
commit313ea21aee18f5bb49cbfd767547c935f6d5a018 (patch)
tree12e54cbca27c1d5a0098ca9353f84cdafab2cc1f /drivers/mtd
parentmtd: rawnand: atmel: remove unnecessary oom message (diff)
downloadlinux-dev-313ea21aee18f5bb49cbfd767547c935f6d5a018.tar.xz
linux-dev-313ea21aee18f5bb49cbfd767547c935f6d5a018.zip
mtd: mtdoops: 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/20210610021201.15076-1-thunder.leizhen@huawei.com
Diffstat (limited to 'drivers/mtd')
-rw-r--r--drivers/mtd/mtdoops.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/mtd/mtdoops.c b/drivers/mtd/mtdoops.c
index 862c4a889234..227df24387df 100644
--- a/drivers/mtd/mtdoops.c
+++ b/drivers/mtd/mtdoops.c
@@ -401,10 +401,8 @@ static int __init mtdoops_init(void)
cxt->mtd_index = mtd_index;
cxt->oops_buf = vmalloc(record_size);
- if (!cxt->oops_buf) {
- printk(KERN_ERR "mtdoops: failed to allocate buffer workspace\n");
+ if (!cxt->oops_buf)
return -ENOMEM;
- }
memset(cxt->oops_buf, 0xff, record_size);
cxt->oops_buf_busy = 0;