Re: [PATCH] bq2415x_charger: Delete unnecessary checks before the function call "of_node_put"

2015-11-06 Thread Pali Rohár
On Friday 06 November 2015 16:56:33 SF Markus Elfring wrote: > From: Markus Elfring > Date: Fri, 6 Nov 2015 16:48:46 +0100 > > The of_node_put() function tests whether its argument is NULL and then > returns immediately. Thus the test around the calls is not needed. > > This issue was detected

[PATCH] bq2415x_charger: Delete unnecessary checks before the function call "of_node_put"

2015-11-06 Thread SF Markus Elfring
From: Markus Elfring Date: Fri, 6 Nov 2015 16:48:46 +0100 The of_node_put() function tests whether its argument is NULL and then returns immediately. Thus the test around the calls is not needed. This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring ---

[PATCH] bq2415x_charger: Delete unnecessary checks before the function call "of_node_put"

2015-11-06 Thread SF Markus Elfring
From: Markus Elfring Date: Fri, 6 Nov 2015 16:48:46 +0100 The of_node_put() function tests whether its argument is NULL and then returns immediately. Thus the test around the calls is not needed. This issue was detected by using the Coccinelle software.

Re: [PATCH] bq2415x_charger: Delete unnecessary checks before the function call "of_node_put"

2015-11-06 Thread Pali Rohár
On Friday 06 November 2015 16:56:33 SF Markus Elfring wrote: > From: Markus Elfring > Date: Fri, 6 Nov 2015 16:48:46 +0100 > > The of_node_put() function tests whether its argument is NULL and then > returns immediately. Thus the test around the calls is not