Re: [PATCH] libnvdimm-btt: Delete an unnecessary check before the function call "__nd_device_register"

2016-07-24 Thread Dan Williams
On Sun, Jul 24, 2016 at 2:16 AM, SF Markus Elfring wrote: > From: Markus Elfring > 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 detec

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

2016-07-24 Thread SF Markus Elfring
From: Markus Elfring 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 -