Lines Matching refs:init
497 struct clk_init_data *init; in ti_fapll_synth_setup() local
500 init = kzalloc(sizeof(*init), GFP_KERNEL); in ti_fapll_synth_setup()
501 if (!init) in ti_fapll_synth_setup()
504 init->ops = &ti_fapll_synt_ops; in ti_fapll_synth_setup()
505 init->name = name; in ti_fapll_synth_setup()
506 init->parent_names = &parent; in ti_fapll_synth_setup()
507 init->num_parents = 1; in ti_fapll_synth_setup()
518 synth->hw.init = init; in ti_fapll_synth_setup()
525 kfree(init); in ti_fapll_synth_setup()
533 struct clk_init_data *init = NULL; in ti_fapll_setup() local
548 init = kzalloc(sizeof(*init), GFP_KERNEL); in ti_fapll_setup()
549 if (!init) in ti_fapll_setup()
552 init->ops = &ti_fapll_ops; in ti_fapll_setup()
553 init->name = node->name; in ti_fapll_setup()
555 init->num_parents = of_clk_get_parent_count(node); in ti_fapll_setup()
556 if (init->num_parents != 2) { in ti_fapll_setup()
563 init->parent_names = parent_name; in ti_fapll_setup()
587 fd->hw.init = init; in ti_fapll_setup()
648 kfree(init); in ti_fapll_setup()
661 kfree(init); in ti_fapll_setup()