Commit 06b37e4a authored by Lee Jones's avatar Lee Jones Committed by Stephen Boyd

clk: Remove unused variable

Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
Signed-off-by: default avatarStephen Boyd <sboyd@codeaurora.org>
parent b62c190f
...@@ -1501,7 +1501,6 @@ static int clk_core_set_rate_nolock(struct clk_core *core, ...@@ -1501,7 +1501,6 @@ static int clk_core_set_rate_nolock(struct clk_core *core,
{ {
struct clk_core *top, *fail_clk; struct clk_core *top, *fail_clk;
unsigned long rate = req_rate; unsigned long rate = req_rate;
int ret = 0;
if (!core) if (!core)
return 0; return 0;
...@@ -1532,7 +1531,7 @@ static int clk_core_set_rate_nolock(struct clk_core *core, ...@@ -1532,7 +1531,7 @@ static int clk_core_set_rate_nolock(struct clk_core *core,
core->req_rate = req_rate; core->req_rate = req_rate;
return ret; return 0;
} }
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment