File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ static u8 clk_pll_get_parent(struct clk_hw *hwclk)
58
58
CLK_MGR_PLL_CLK_SRC_MASK ;
59
59
}
60
60
61
- static struct clk_ops clk_pll_ops = {
61
+ static const struct clk_ops clk_pll_ops = {
62
62
.recalc_rate = clk_pll_recalc_rate ,
63
63
.get_parent = clk_pll_get_parent ,
64
64
};
Original file line number Diff line number Diff line change @@ -98,13 +98,13 @@ static int clk_pll_prepare(struct clk_hw *hwclk)
98
98
return 0 ;
99
99
}
100
100
101
- static struct clk_ops clk_pll_ops = {
101
+ static const struct clk_ops clk_pll_ops = {
102
102
.recalc_rate = clk_pll_recalc_rate ,
103
103
.get_parent = clk_pll_get_parent ,
104
104
.prepare = clk_pll_prepare ,
105
105
};
106
106
107
- static struct clk_ops clk_boot_ops = {
107
+ static const struct clk_ops clk_boot_ops = {
108
108
.recalc_rate = clk_boot_clk_recalc_rate ,
109
109
.get_parent = clk_boot_get_parent ,
110
110
.prepare = clk_pll_prepare ,
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ static u8 clk_pll_get_parent(struct clk_hw *hwclk)
65
65
CLK_MGR_PLL_CLK_SRC_MASK ;
66
66
}
67
67
68
- static struct clk_ops clk_pll_ops = {
68
+ static const struct clk_ops clk_pll_ops = {
69
69
.recalc_rate = clk_pll_recalc_rate ,
70
70
.get_parent = clk_pll_get_parent ,
71
71
};
You can’t perform that action at this time.
0 commit comments