提交 1f3e1983 编写于 作者: S Stephen Boyd

clk: Remove impossible if condition in clk_core_get_phase()

This condition can't ever be true because this function is static
and it's always called with a non-NULL pointer.
Signed-off-by: NStephen Boyd <sboyd@codeaurora.org>
上级 d7d13151
......@@ -2182,16 +2182,12 @@ EXPORT_SYMBOL_GPL(clk_set_phase);
static int clk_core_get_phase(struct clk_core *core)
{
int ret = 0;
if (!core)
goto out;
int ret;
clk_prepare_lock();
ret = core->phase;
clk_prepare_unlock();
out:
return ret;
}
EXPORT_SYMBOL_GPL(clk_get_phase);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册