Lines Matching defs:clk_hw
22 static int omap36xx_gate_clk_enable_with_hsdiv_restore(struct clk_hw *clk);
50 * @hw: DPLL output struct clk_hw
58 static int omap36xx_gate_clk_enable_with_hsdiv_restore(struct clk_hw *hw)
61 struct clk_hw *parent_hw;
95 struct clk_hw_omap *clk_hw;
98 clk_hw = kzalloc(sizeof(*clk_hw), GFP_KERNEL);
99 if (!clk_hw)
102 clk_hw->hw.init = &init;
107 memcpy(&clk_hw->enable_reg, reg, sizeof(*reg));
108 clk_hw->enable_bit = bit_idx;
109 clk_hw->ops = hw_ops;
111 clk_hw->flags = clk_gate_flags;
118 clk = of_ti_clk_register_omap_hw(node, &clk_hw->hw, name);
121 kfree(clk_hw);