Lines Matching defs:init
18 #include <linux/init.h>
174 struct clk_init_data init = { NULL };
185 clk_hw->hw.init = &init;
188 init.name = name;
189 init.ops = &atl_clk_ops;
190 init.flags = CLK_IGNORE_UNUSED;
191 init.num_parents = of_clk_get_parent_count(node);
193 if (init.num_parents != 1) {
206 init.parent_names = parent_names;