clk: Simplify debugfs registration

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

Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
This commit is contained in:
Stephen Boyd 2018-01-03 16:44:37 -08:00
parent 4c8326d5eb
commit db3188fadf
1 changed files with 2 additions and 6 deletions

View File

@ -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;