diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2017-11-14 21:07:38 +0300 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2017-11-14 21:07:38 +0300 |
commit | ed9c62f75aef10297fb6da4e24292fb354cb8307 (patch) | |
tree | 373eb7afd5d079c84aaf1ebaa1a3df68dd846086 /drivers/clk/sirf/clk-atlas6.c | |
parent | 3b0da91688b64290df7b6a31b515a8c903675525 (diff) | |
parent | 0777066dcee8a4f16db09fd21dfd58b6d83b12f9 (diff) | |
download | linux-ed9c62f75aef10297fb6da4e24292fb354cb8307.tar.xz |
Merge branch 'clk-const' into clk-next
* clk-const:
clk: make clk_init_data const
clk: imx: make clk_ops const
clk: mmp: make clk_ops const
clk: hisilicon: make clk_ops const
clk: mxs: make clk_ops const
clk: sirf: make clk_ops const
clk: spear: make clk_ops const
CLK: SPEAr: make aux_clk_masks structures const
CLK: SPEAr: make structure field and function argument as const
Diffstat (limited to 'drivers/clk/sirf/clk-atlas6.c')
-rw-r--r-- | drivers/clk/sirf/clk-atlas6.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/sirf/clk-atlas6.c b/drivers/clk/sirf/clk-atlas6.c index 665fa681b2e1..0cd11e6893af 100644 --- a/drivers/clk/sirf/clk-atlas6.c +++ b/drivers/clk/sirf/clk-atlas6.c @@ -42,7 +42,7 @@ static struct clk_dmn clk_mmc45 = { }, }; -static struct clk_init_data clk_nand_init = { +static const struct clk_init_data clk_nand_init = { .name = "nand", .ops = &dmn_ops, .parent_names = dmn_clk_parents, |