Lines Matching refs:init
104 struct clk_init_data init = {};
115 init.name = name;
116 init.ops = &peripheral_ops;
118 init.parent_hws = (const struct clk_hw **)&parent_hw;
120 init.parent_names = &parent_name;
121 init.num_parents = 1;
122 init.flags = 0;
125 periph->hw.init = &init;
456 struct clk_init_data init = {};
467 init.name = name;
469 init.parent_hws = (const struct clk_hw **)&parent_hw;
471 init.parent_names = &parent_name;
472 init.num_parents = 1;
473 init.flags = flags;
475 init.ops = &sam9x5_peripheral_ops;
477 init.flags |= CLK_SET_RATE_GATE | CLK_SET_PARENT_GATE |
479 init.ops = &sam9x5_peripheral_chg_ops;
483 periph->hw.init = &init;