Skip to content
Snippets Groups Projects
Commit 28ed893c authored by Sachin Kamat's avatar Sachin Kamat Committed by Linus Torvalds
Browse files

drivers/rtc/rtc-hym8563.c: staticize local symbol


'hym8563_clkout_ops' is used only in this file.

Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 156e3526
No related branches found
No related tags found
No related merge requests found
...@@ -389,7 +389,7 @@ static int hym8563_clkout_is_prepared(struct clk_hw *hw) ...@@ -389,7 +389,7 @@ static int hym8563_clkout_is_prepared(struct clk_hw *hw)
return !(ret & HYM8563_CLKOUT_DISABLE); return !(ret & HYM8563_CLKOUT_DISABLE);
} }
const struct clk_ops hym8563_clkout_ops = { static const struct clk_ops hym8563_clkout_ops = {
.prepare = hym8563_clkout_prepare, .prepare = hym8563_clkout_prepare,
.unprepare = hym8563_clkout_unprepare, .unprepare = hym8563_clkout_unprepare,
.is_prepared = hym8563_clkout_is_prepared, .is_prepared = hym8563_clkout_is_prepared,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment