Lines Matching defs:clk_hw
30 static int omap36xx_gate_clk_enable_with_hsdiv_restore(struct clk_hw *clk);
66 static int omap36xx_gate_clk_enable_with_hsdiv_restore(struct clk_hw *hw)
69 struct clk_hw *parent_hw;
103 struct clk_hw_omap *clk_hw;
106 clk_hw = kzalloc(sizeof(*clk_hw), GFP_KERNEL);
107 if (!clk_hw)
110 clk_hw->hw.init = &init;
115 memcpy(&clk_hw->enable_reg, reg, sizeof(*reg));
116 clk_hw->enable_bit = bit_idx;
117 clk_hw->ops = hw_ops;
119 clk_hw->flags = clk_gate_flags;
126 clk = of_ti_clk_register_omap_hw(node, &clk_hw->hw, name);
129 kfree(clk_hw);