diff --git a/drivers/clk/clk-fixed.c b/drivers/clk/clk-fixed.c index 3a38865fb..8164005a0 100644 --- a/drivers/clk/clk-fixed.c +++ b/drivers/clk/clk-fixed.c @@ -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, };