diff options
author | Ray Jui <rjui@broadcom.com> | 2016-01-26 20:18:40 -0500 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2016-01-29 19:31:40 -0500 |
commit | df416e565d6e1d18cfa3b5e016a667bf51ce6aac (patch) | |
tree | ef23b07f58f4da27ca64906cd98a6b11193f610c | |
parent | bcd8be139803f51834347840349c150bf0e4eb96 (diff) |
clk: iproc: Remove __init from header
Remove __init macro from all function prototypes in clk-iproc.h
Signed-off-by: Ray Jui <rjui@broadcom.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
-rw-r--r-- | drivers/clk/bcm/clk-iproc.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/drivers/clk/bcm/clk-iproc.h b/drivers/clk/bcm/clk-iproc.h index febae119f9ef..2148b4ea9f28 100644 --- a/drivers/clk/bcm/clk-iproc.h +++ b/drivers/clk/bcm/clk-iproc.h | |||
@@ -204,16 +204,16 @@ struct iproc_asiu_div { | |||
204 | unsigned int low_width; | 204 | unsigned int low_width; |
205 | }; | 205 | }; |
206 | 206 | ||
207 | void __init iproc_armpll_setup(struct device_node *node); | 207 | void iproc_armpll_setup(struct device_node *node); |
208 | void __init iproc_pll_clk_setup(struct device_node *node, | 208 | void iproc_pll_clk_setup(struct device_node *node, |
209 | const struct iproc_pll_ctrl *pll_ctrl, | 209 | const struct iproc_pll_ctrl *pll_ctrl, |
210 | const struct iproc_pll_vco_param *vco, | 210 | const struct iproc_pll_vco_param *vco, |
211 | unsigned int num_vco_entries, | 211 | unsigned int num_vco_entries, |
212 | const struct iproc_clk_ctrl *clk_ctrl, | 212 | const struct iproc_clk_ctrl *clk_ctrl, |
213 | unsigned int num_clks); | 213 | unsigned int num_clks); |
214 | void __init iproc_asiu_setup(struct device_node *node, | 214 | void iproc_asiu_setup(struct device_node *node, |
215 | const struct iproc_asiu_div *div, | 215 | const struct iproc_asiu_div *div, |
216 | const struct iproc_asiu_gate *gate, | 216 | const struct iproc_asiu_gate *gate, |
217 | unsigned int num_clks); | 217 | unsigned int num_clks); |
218 | 218 | ||
219 | #endif /* _CLK_IPROC_H */ | 219 | #endif /* _CLK_IPROC_H */ |