Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d4c5725d authored by Markus Elfring's avatar Markus Elfring Committed by Dan Williams
Browse files

libnvdimm-btt: Delete an unnecessary check before the function call "__nd_device_register"



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: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: default avatarDan Williams <dan.j.williams@intel.com>
parent 6839a6d9
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -198,7 +198,6 @@ 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);
	return dev;
}