9
0
Fork 0

drivers/clk/clk-fixed.c: Fix sparse warning

drivers/clk/clk-fixed.c:35:16: warning: symbol 'clk_fixed_ops' was not declared. Should it be static?

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Alexander Shiyan 2014-02-16 11:24:31 +04:00 committed by Sascha Hauer
parent 00fa656976
commit 9404bfce88
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ static unsigned long clk_fixed_recalc_rate(struct clk *clk,
return fix->rate;
}
struct clk_ops clk_fixed_ops = {
static struct clk_ops clk_fixed_ops = {
.recalc_rate = clk_fixed_recalc_rate,
.is_enabled = clk_is_enabled_always,
};