Lines Matching refs:child
177 struct clk_core *child; in clk_unprepare_unused_subtree() local
181 hlist_for_each_entry(child, &core->children, child_node) in clk_unprepare_unused_subtree()
182 clk_unprepare_unused_subtree(child); in clk_unprepare_unused_subtree()
202 struct clk_core *child; in clk_disable_unused_subtree() local
207 hlist_for_each_entry(child, &core->children, child_node) in clk_disable_unused_subtree()
208 clk_disable_unused_subtree(child); in clk_disable_unused_subtree()
308 struct clk_core *child; in __clk_lookup_subtree() local
314 hlist_for_each_entry(child, &core->children, child_node) { in __clk_lookup_subtree()
315 ret = __clk_lookup_subtree(name, child); in __clk_lookup_subtree()
938 struct clk_core *child; in __clk_recalc_accuracies() local
951 hlist_for_each_entry(child, &core->children, child_node) in __clk_recalc_accuracies()
952 __clk_recalc_accuracies(child); in __clk_recalc_accuracies()
1011 struct clk_core *child; in __clk_recalc_rates() local
1029 hlist_for_each_entry(child, &core->children, child_node) in __clk_recalc_rates()
1030 __clk_recalc_rates(child, msg); in __clk_recalc_rates()
1103 struct clk_core *child; in clk_core_update_orphan_status() local
1107 hlist_for_each_entry(child, &core->children, child_node) in clk_core_update_orphan_status()
1108 clk_core_update_orphan_status(child, is_orphan); in clk_core_update_orphan_status()
1243 struct clk_core *child; in __clk_speculate_rates() local
1261 hlist_for_each_entry(child, &core->children, child_node) { in __clk_speculate_rates()
1262 ret = __clk_speculate_rates(child, new_rate); in __clk_speculate_rates()
1274 struct clk_core *child; in clk_calc_subtree() local
1284 hlist_for_each_entry(child, &core->children, child_node) { in clk_calc_subtree()
1285 child->new_rate = clk_recalc(child, new_rate); in clk_calc_subtree()
1286 clk_calc_subtree(child, child->new_rate, NULL, 0); in clk_calc_subtree()
1395 struct clk_core *child, *tmp_clk, *fail_clk = NULL; in clk_propagate_rate_change() local
1407 hlist_for_each_entry(child, &core->children, child_node) { in clk_propagate_rate_change()
1409 if (child->new_parent && child->new_parent != core) in clk_propagate_rate_change()
1411 tmp_clk = clk_propagate_rate_change(child, event); in clk_propagate_rate_change()
1432 struct clk_core *child; in clk_change_rate() local
1482 hlist_for_each_entry_safe(child, tmp, &core->children, child_node) { in clk_change_rate()
1484 if (child->new_parent && child->new_parent != core) in clk_change_rate()
1486 clk_change_rate(child); in clk_change_rate()
1993 struct clk_core *child; in clk_summary_show_subtree() local
2000 hlist_for_each_entry(child, &c->children, child_node) in clk_summary_show_subtree()
2001 clk_summary_show_subtree(s, child, level + 1); in clk_summary_show_subtree()
2052 struct clk_core *child; in clk_dump_subtree() local
2059 hlist_for_each_entry(child, &c->children, child_node) { in clk_dump_subtree()
2061 clk_dump_subtree(s, child, level + 1); in clk_dump_subtree()
2679 struct clk_core *child; in clk_unregister() local
2683 hlist_for_each_entry_safe(child, t, &clk->core->children, in clk_unregister()
2685 clk_core_set_parent(child, NULL); in clk_unregister()