diff options
author | Bhumika Goyal <bhumirks@gmail.com> | 2017-08-22 19:05:55 +0530 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2017-11-01 23:25:47 -0700 |
commit | e90a7da4f75435ba0e5fcb12ed65fa6d4bd7a364 (patch) | |
tree | a4551b8d7cfbbe4ffcc214908c678d9f9d513c88 /drivers/clk/mmp/clk-apmu.c | |
parent | 9108620d2d52d7a58bbf6192e56903355eace907 (diff) |
clk: mmp: make clk_ops const
Make these const as they are only stored in the const field of a
clk_init_data structure.
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers/clk/mmp/clk-apmu.c')
-rw-r--r-- | drivers/clk/mmp/clk-apmu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/mmp/clk-apmu.c b/drivers/clk/mmp/clk-apmu.c index 47b5542ce50f..b7ce8f52026e 100644 --- a/drivers/clk/mmp/clk-apmu.c +++ b/drivers/clk/mmp/clk-apmu.c @@ -60,7 +60,7 @@ static void clk_apmu_disable(struct clk_hw *hw) spin_unlock_irqrestore(apmu->lock, flags); } -static struct clk_ops clk_apmu_ops = { +static const struct clk_ops clk_apmu_ops = { .enable = clk_apmu_enable, .disable = clk_apmu_disable, }; |