[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <0844e82c-8ab1-d88d-879b-145b9add327d@users.sourceforge.net>
Date: Sun, 24 Jul 2016 11:16:00 +0200
From: SF Markus Elfring <elfring@...rs.sourceforge.net>
To: linux-nvdimm@...ts.01.org, Dan Williams <dan.j.williams@...el.com>,
Vishal Verma <vishal.l.verma@...el.com>
Cc: LKML <linux-kernel@...r.kernel.org>,
kernel-janitors@...r.kernel.org,
Julia Lawall <julia.lawall@...6.fr>,
Johannes Thumshirn <jthumshirn@...e.de>
Subject: [PATCH] libnvdimm-btt: Delete an unnecessary check before the
function call "__nd_device_register"
From: Markus Elfring <elfring@...rs.sourceforge.net>
Date: Sun, 24 Jul 2016 11:05:34 +0200
The __nd_device_register() function tests whether its argument is NULL
and then returns immediately. Thus the test around the call is not needed.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@...rs.sourceforge.net>
---
drivers/nvdimm/btt_devs.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/nvdimm/btt_devs.c b/drivers/nvdimm/btt_devs.c
index 816d0da..3fa7919 100644
--- a/drivers/nvdimm/btt_devs.c
+++ b/drivers/nvdimm/btt_devs.c
@@ -198,8 +198,7 @@ struct device *nd_btt_create(struct nd_region *nd_region)
{
struct device *dev = __nd_btt_create(nd_region, 0, NULL, NULL);
- if (dev)
- __nd_device_register(dev);
+ __nd_device_register(dev);
return dev;
}
--
2.9.2
Powered by blists - more mailing lists