diff options
author | Bhumika Goyal <bhumirks@gmail.com> | 2017-08-22 19:12:07 +0530 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2017-11-01 23:25:45 -0700 |
commit | 9108620d2d52d7a58bbf6192e56903355eace907 (patch) | |
tree | 7d1f9ee5ad0387b5697c8fb50ef3b34b5ce99ea2 /drivers/clk/hisilicon/clkgate-separated.c | |
parent | ed3f2d12213b3d13ca0b941199c250c66a318b72 (diff) |
clk: hisilicon: 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/hisilicon/clkgate-separated.c')
-rw-r--r-- | drivers/clk/hisilicon/clkgate-separated.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/hisilicon/clkgate-separated.c b/drivers/clk/hisilicon/clkgate-separated.c index 7908bc3c9ec7..1172b0982b77 100644 --- a/drivers/clk/hisilicon/clkgate-separated.c +++ b/drivers/clk/hisilicon/clkgate-separated.c @@ -88,7 +88,7 @@ static int clkgate_separated_is_enabled(struct clk_hw *hw) return reg ? 1 : 0; } -static struct clk_ops clkgate_separated_ops = { +static const struct clk_ops clkgate_separated_ops = { .enable = clkgate_separated_enable, .disable = clkgate_separated_disable, .is_enabled = clkgate_separated_is_enabled, |