aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/clk/clk-fixed-rate.c
diff options
context:
space:
mode:
authorShawn Guo <shawn.guo@linaro.org>2012-03-27 15:23:22 +0800
committerMike Turquette <mturquette@linaro.org>2012-04-24 16:37:38 -0700
commit822c250e154cd44cf60a4f0d647aa70abea09520 (patch)
treee23420400357585a3ab0cdbacd2c8d8b9605efd2 /drivers/clk/clk-fixed-rate.c
parentclk: remove unnecessary EXPORT_SYMBOL_GPL (diff)
downloadwireguard-linux-822c250e154cd44cf60a4f0d647aa70abea09520.tar.xz
wireguard-linux-822c250e154cd44cf60a4f0d647aa70abea09520.zip
clk: add "const" for clk_ops of basic clks
The clk_ops of basic clks should have "const" to match the definition in "struct clk" and clk_register prototype. Signed-off-by: Shawn Guo <shawn.guo@linaro.org> Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'drivers/clk/clk-fixed-rate.c')
-rw-r--r--drivers/clk/clk-fixed-rate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/clk-fixed-rate.c b/drivers/clk/clk-fixed-rate.c
index 651b06f49e15..027e47704de9 100644
--- a/drivers/clk/clk-fixed-rate.c
+++ b/drivers/clk/clk-fixed-rate.c
@@ -33,7 +33,7 @@ static unsigned long clk_fixed_rate_recalc_rate(struct clk_hw *hw,
return to_clk_fixed_rate(hw)->fixed_rate;
}
-struct clk_ops clk_fixed_rate_ops = {
+const struct clk_ops clk_fixed_rate_ops = {
.recalc_rate = clk_fixed_rate_recalc_rate,
};
EXPORT_SYMBOL_GPL(clk_fixed_rate_ops);