Lines Matching refs:child
185 struct clk_core *child; in clk_summary_show_subtree() local
192 hlist_for_each_entry(child, &c->children, child_node) in clk_summary_show_subtree()
193 clk_summary_show_subtree(s, child, level + 1); in clk_summary_show_subtree()
244 struct clk_core *child; in clk_dump_subtree() local
251 hlist_for_each_entry(child, &c->children, child_node) { in clk_dump_subtree()
253 clk_dump_subtree(s, child, level + 1); in clk_dump_subtree()
485 struct clk_core *child; in clk_unprepare_unused_subtree() local
489 hlist_for_each_entry(child, &clk->children, child_node) in clk_unprepare_unused_subtree()
490 clk_unprepare_unused_subtree(child); in clk_unprepare_unused_subtree()
511 struct clk_core *child; in clk_disable_unused_subtree() local
516 hlist_for_each_entry(child, &clk->children, child_node) in clk_disable_unused_subtree()
517 clk_disable_unused_subtree(child); in clk_disable_unused_subtree()
750 struct clk_core *child; in __clk_lookup_subtree() local
756 hlist_for_each_entry(child, &clk->children, child_node) { in __clk_lookup_subtree()
757 ret = __clk_lookup_subtree(name, child); in __clk_lookup_subtree()
1275 struct clk_core *child; in __clk_recalc_accuracies() local
1288 hlist_for_each_entry(child, &clk->children, child_node) in __clk_recalc_accuracies()
1289 __clk_recalc_accuracies(child); in __clk_recalc_accuracies()
1350 struct clk_core *child; in __clk_recalc_rates() local
1368 hlist_for_each_entry(child, &clk->children, child_node) in __clk_recalc_rates()
1369 __clk_recalc_rates(child, msg); in __clk_recalc_rates()
1568 struct clk_core *child; in __clk_speculate_rates() local
1586 hlist_for_each_entry(child, &clk->children, child_node) { in __clk_speculate_rates()
1587 ret = __clk_speculate_rates(child, new_rate); in __clk_speculate_rates()
1599 struct clk_core *child; in clk_calc_subtree() local
1609 hlist_for_each_entry(child, &clk->children, child_node) { in clk_calc_subtree()
1610 child->new_rate = clk_recalc(child, new_rate); in clk_calc_subtree()
1611 clk_calc_subtree(child, child->new_rate, NULL, 0); in clk_calc_subtree()
1712 struct clk_core *child, *tmp_clk, *fail_clk = NULL; in clk_propagate_rate_change() local
1724 hlist_for_each_entry(child, &clk->children, child_node) { in clk_propagate_rate_change()
1726 if (child->new_parent && child->new_parent != clk) in clk_propagate_rate_change()
1728 tmp_clk = clk_propagate_rate_change(child, event); in clk_propagate_rate_change()
1749 struct clk_core *child; in clk_change_rate() local
1796 hlist_for_each_entry_safe(child, tmp, &clk->children, child_node) { in clk_change_rate()
1798 if (child->new_parent && child->new_parent != clk) in clk_change_rate()
1800 clk_change_rate(child); in clk_change_rate()
2655 struct clk_core *child; in clk_unregister() local
2659 hlist_for_each_entry_safe(child, t, &clk->core->children, in clk_unregister()
2661 clk_core_set_parent(child, NULL); in clk_unregister()