Lines Matching refs:composite
13 struct clk_composite *composite = to_clk_composite(hw);
14 const struct clk_ops *mux_ops = composite->mux_ops;
15 struct clk_hw *mux_hw = composite->mux_hw;
24 struct clk_composite *composite = to_clk_composite(hw);
25 const struct clk_ops *mux_ops = composite->mux_ops;
26 struct clk_hw *mux_hw = composite->mux_hw;
36 struct clk_composite *composite = to_clk_composite(hw);
37 const struct clk_ops *rate_ops = composite->rate_ops;
38 struct clk_hw *rate_hw = composite->rate_hw;
71 struct clk_composite *composite = to_clk_composite(hw);
72 const struct clk_ops *rate_ops = composite->rate_ops;
73 const struct clk_ops *mux_ops = composite->mux_ops;
74 struct clk_hw *rate_hw = composite->rate_hw;
75 struct clk_hw *mux_hw = composite->mux_hw;
156 struct clk_composite *composite = to_clk_composite(hw);
157 const struct clk_ops *rate_ops = composite->rate_ops;
158 struct clk_hw *rate_hw = composite->rate_hw;
168 struct clk_composite *composite = to_clk_composite(hw);
169 const struct clk_ops *rate_ops = composite->rate_ops;
170 struct clk_hw *rate_hw = composite->rate_hw;
182 struct clk_composite *composite = to_clk_composite(hw);
183 const struct clk_ops *rate_ops = composite->rate_ops;
184 const struct clk_ops *mux_ops = composite->mux_ops;
185 struct clk_hw *rate_hw = composite->rate_hw;
186 struct clk_hw *mux_hw = composite->mux_hw;
206 struct clk_composite *composite = to_clk_composite(hw);
207 const struct clk_ops *gate_ops = composite->gate_ops;
208 struct clk_hw *gate_hw = composite->gate_hw;
217 struct clk_composite *composite = to_clk_composite(hw);
218 const struct clk_ops *gate_ops = composite->gate_ops;
219 struct clk_hw *gate_hw = composite->gate_hw;
228 struct clk_composite *composite = to_clk_composite(hw);
229 const struct clk_ops *gate_ops = composite->gate_ops;
230 struct clk_hw *gate_hw = composite->gate_hw;
247 struct clk_composite *composite;
251 composite = kzalloc(sizeof(*composite), GFP_KERNEL);
252 if (!composite)
262 hw = &composite->hw;
264 clk_composite_ops = &composite->ops;
272 composite->mux_hw = mux_hw;
273 composite->mux_ops = mux_ops;
305 composite->rate_hw = rate_hw;
306 composite->rate_ops = rate_ops;
322 composite->gate_hw = gate_hw;
323 composite->gate_ops = gate_ops;
330 composite->hw.init = &init;
338 if (composite->mux_hw)
339 composite->mux_hw->clk = hw->clk;
341 if (composite->rate_hw)
342 composite->rate_hw->clk = hw->clk;
344 if (composite->gate_hw)
345 composite->gate_hw->clk = hw->clk;
350 kfree(composite);
421 struct clk_composite *composite;
428 composite = to_clk_composite(hw);
431 kfree(composite);
436 struct clk_composite *composite;
438 composite = to_clk_composite(hw);
441 kfree(composite);