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

Commit c46ca3c8 authored by Markus Elfring's avatar Markus Elfring Committed by Grant Likely
Browse files

of: Delete unnecessary check before calling "of_node_put()"



The of_node_put() 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 avatarGrant Likely <grant.likely@linaro.org>
parent 70161ff3
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -516,7 +516,6 @@ static void __init of_selftest_changeset(void)
	/* Make sure node names are constructed correctly */
	selftest((np = of_find_node_by_path("/testcase-data/changeset/n2/n21")),
		 "'%s' not added\n", n21->full_name);
	if (np)
	of_node_put(np);

	mutex_lock(&of_mutex);