From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-wm0-x242.google.com ([2a00:1450:400c:c09::242]) by bombadil.infradead.org with esmtps (Exim 4.85_2 #1 (Red Hat Linux)) id 1c6v1m-0005Bl-R4 for linux-mtd@lists.infradead.org; Wed, 16 Nov 2016 07:53:08 +0000 Received: by mail-wm0-x242.google.com with SMTP id g23so8272885wme.1 for ; Tue, 15 Nov 2016 23:52:42 -0800 (PST) Message-ID: <582C1041.7040809@gmail.com> Date: Wed, 16 Nov 2016 07:52:33 +0000 From: Sudip Mukherjee MIME-Version: 1.0 To: Marek Vasut , Boris Brezillon , Richard Weinberger , David Woodhouse , Brian Norris , Cyrille Pitchen CC: linux-kernel@vger.kernel.org, linux-mtd@lists.infradead.org Subject: Re: [PATCH] mtd: nand: nandsim: fix error check References: <1479251395-3100-1-git-send-email-sudipm.mukherjee@gmail.com> <0ad0b3d4-bde6-57ab-6856-de771ade3c32@gmail.com> In-Reply-To: <0ad0b3d4-bde6-57ab-6856-de771ade3c32@gmail.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Tuesday 15 November 2016 11:42 PM, Marek Vasut wrote: > On 11/16/2016 12:09 AM, Sudip Mukherjee wrote: >> debugfs_create_dir() and debugfs_create_file() returns NULL on error or >> a pointer on success. They do not return the error value with ERR_PTR. >> So we should not check the return with IS_ERR_OR_NULL, instead we >> should just check for NULL. >> >> Signed-off-by: Sudip Mukherjee >> --- >> drivers/mtd/nand/nandsim.c | 9 +++------ >> 1 file changed, 3 insertions(+), 6 deletions(-) >> >> diff --git a/drivers/mtd/nand/nandsim.c b/drivers/mtd/nand/nandsim.c >> index c76287a..9b0d79a 100644 >> --- a/drivers/mtd/nand/nandsim.c >> +++ b/drivers/mtd/nand/nandsim.c >> @@ -525,15 +525,13 @@ static int nandsim_debugfs_create(struct nandsim *dev) >> { >> struct nandsim_debug_info *dbg = &dev->dbg; >> struct dentry *dent; >> - int err; >> + int err = -ENODEV; > > Why don't you just nuke the err altogether and just return -ENODEV ? That was the first version which i made and discarded before sending. I will go and find it now. Regards Sudip