clk: make clk_init_data const

Make these const as they are only stored in the init field of a clk_hw
structure, which is const.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
This commit is contained in:
Bhumika Goyal
2017-08-18 15:38:17 +05:30
committed by Stephen Boyd
parent fa1da981f5
commit 0777066dce
6 changed files with 55 additions and 55 deletions

View File

@@ -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 = &ios_ops,
.parent_names = std_clk_io_parents,