Lines Matching defs:init
175 struct clk_init_data init;
181 init.ops = &tegra_clk_periph_nodiv_ops;
183 init.ops = &tegra_clk_periph_no_gate_ops;
185 init.ops = &tegra_clk_periph_ops;
187 init.name = name;
188 init.flags = flags;
189 init.parent_names = parent_names;
190 init.num_parents = num_parents;
196 /* Data in .init is copied by clk_register(), so stack variable OK */
197 periph->hw.init = &init;
236 struct tegra_periph_init_data *init)
238 return _tegra_clk_register_periph(init->name, init->p.parent_names,
239 init->num_parents, &init->periph,
240 clk_base, init->offset, init->flags);