From: Sachin Kamat Date: Thu, 23 Jan 2014 23:55:18 +0000 (-0800) Subject: drivers/rtc/rtc-hym8563.c: staticize local symbol X-Git-Tag: v4.9.8~7069^2~55 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=28ed893c02e7da25792e6742a78b679662a144e3;p=platform%2Fkernel%2Flinux-rpi3.git drivers/rtc/rtc-hym8563.c: staticize local symbol 'hym8563_clkout_ops' is used only in this file. Signed-off-by: Sachin Kamat Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/rtc/rtc-hym8563.c b/drivers/rtc/rtc-hym8563.c index 6118000..bd628a6 100644 --- a/drivers/rtc/rtc-hym8563.c +++ b/drivers/rtc/rtc-hym8563.c @@ -389,7 +389,7 @@ static int hym8563_clkout_is_prepared(struct clk_hw *hw) return !(ret & HYM8563_CLKOUT_DISABLE); } -const struct clk_ops hym8563_clkout_ops = { +static const struct clk_ops hym8563_clkout_ops = { .prepare = hym8563_clkout_prepare, .unprepare = hym8563_clkout_unprepare, .is_prepared = hym8563_clkout_is_prepared,