Browse Source

clk: Simplify debugfs registration

We don't need a goto here. Drop it.

Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Stephen Boyd 7 years ago
parent
commit
db3188fadf
1 changed files with 2 additions and 6 deletions
  1. 2 6
      drivers/clk/clk.c

+ 2 - 6
drivers/clk/clk.c

@@ -2723,12 +2723,8 @@ static int clk_debug_register(struct clk_core *core)
 
 	mutex_lock(&clk_debug_lock);
 	hlist_add_head(&core->debug_node, &clk_debug_list);
-
-	if (!inited)
-		goto unlock;
-
-	ret = clk_debug_create_one(core, rootdir);
-unlock:
+	if (inited)
+		ret = clk_debug_create_one(core, rootdir);
 	mutex_unlock(&clk_debug_lock);
 
 	return ret;