Commit 9a00fa68 authored by Tero Kristo's avatar Tero Kristo

clk: ti: gate: export gate_clk_ops locally

These are going to be used by the clkctrl support that will be introduced
later.
Signed-off-by: default avatarTero Kristo <t-kristo@ti.com>
Acked-by: default avatarTony Lindgren <tony@atomide.com>
parent 4f6be565
...@@ -253,6 +253,7 @@ extern const struct clk_hw_omap_ops clkhwops_am35xx_ipss_wait; ...@@ -253,6 +253,7 @@ extern const struct clk_hw_omap_ops clkhwops_am35xx_ipss_wait;
extern const struct clk_ops ti_clk_divider_ops; extern const struct clk_ops ti_clk_divider_ops;
extern const struct clk_ops ti_clk_mux_ops; extern const struct clk_ops ti_clk_mux_ops;
extern const struct clk_ops omap_gate_clk_ops;
void omap2_init_clk_clkdm(struct clk_hw *hw); void omap2_init_clk_clkdm(struct clk_hw *hw);
int omap2_clkops_enable_clkdm(struct clk_hw *hw); int omap2_clkops_enable_clkdm(struct clk_hw *hw);
......
...@@ -35,7 +35,7 @@ static const struct clk_ops omap_gate_clkdm_clk_ops = { ...@@ -35,7 +35,7 @@ static const struct clk_ops omap_gate_clkdm_clk_ops = {
.disable = &omap2_clkops_disable_clkdm, .disable = &omap2_clkops_disable_clkdm,
}; };
static const struct clk_ops omap_gate_clk_ops = { const struct clk_ops omap_gate_clk_ops = {
.init = &omap2_init_clk_clkdm, .init = &omap2_init_clk_clkdm,
.enable = &omap2_dflt_clk_enable, .enable = &omap2_dflt_clk_enable,
.disable = &omap2_dflt_clk_disable, .disable = &omap2_dflt_clk_disable,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment