From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail.bootlin.com ([62.4.15.54]) by bombadil.infradead.org with esmtp (Exim 4.90_1 #2 (Red Hat Linux)) id 1fad9f-0001tT-16 for linux-mtd@lists.infradead.org; Wed, 04 Jul 2018 08:28:54 +0000 Date: Wed, 4 Jul 2018 10:28:29 +0200 From: Boris Brezillon To: Wei Yongjun Cc: Miquel Raynal , Richard Weinberger , "David Woodhouse" , Brian Norris , Marek Vasut , Peter Pan , Frieder Schrempf , , , Subject: Re: [PATCH -next] mtd: spinand: Fix error return code in spinand_init() Message-ID: <20180704102829.6b29c6cb@bbrezillon> In-Reply-To: <1530693298-14271-1-git-send-email-weiyongjun1@huawei.com> References: <1530693298-14271-1-git-send-email-weiyongjun1@huawei.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Wed, 4 Jul 2018 08:34:58 +0000 Wei Yongjun wrote: > Fix to return error code -ENOMEM from the kzalloc() error handling > case instead of 0, as done elsewhere in this function. > > Fixes: c898e0526fb6 ("mtd: nand: Add core infrastructure to support SPI NANDs") > Signed-off-by: Wei Yongjun Acked-by: Boris Brezillon > --- > drivers/mtd/nand/spi/core.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/drivers/mtd/nand/spi/core.c b/drivers/mtd/nand/spi/core.c > index 17d207a..011683e 100644 > --- a/drivers/mtd/nand/spi/core.c > +++ b/drivers/mtd/nand/spi/core.c > @@ -985,8 +985,10 @@ static int spinand_init(struct spinand_device *spinand) > spinand->databuf = kzalloc(nanddev_page_size(nand) + > nanddev_per_page_oobsize(nand), > GFP_KERNEL); > - if (!spinand->databuf) > + if (!spinand->databuf) { > + ret = -ENOMEM; > goto err_free_bufs; > + } > > spinand->oobbuf = spinand->databuf + nanddev_page_size(nand); >