libnvdimm-btt: Delete an unnecessary check before the function call "__nd_device_regi...
authorMarkus Elfring <elfring@users.sourceforge.net>
Sun, 24 Jul 2016 09:05:34 +0000 (11:05 +0200)
committerDan Williams <dan.j.williams@intel.com>
Sun, 24 Jul 2016 15:04:55 +0000 (08:04 -0700)
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@users.sourceforge.net>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
drivers/nvdimm/btt_devs.c

index 816d0dae63983c8ccf2c4f288e2d841dc74d843d..3fa7919f94a8785860afd3487d803f5b3010acd9 100644 (file)
@@ -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;
 }
 
This page took 0.028002 seconds and 5 git commands to generate.