Lines Matching refs:root

3716 	struct dentry *root;
3721 root = debugfs_create_dir(core->name, pdentry);
3722 core->dentry = root;
3724 debugfs_create_file("clk_rate", clk_rate_mode, root, core,
3726 debugfs_create_file("clk_min_rate", 0444, root, core, &clk_min_rate_fops);
3727 debugfs_create_file("clk_max_rate", 0444, root, core, &clk_max_rate_fops);
3728 debugfs_create_ulong("clk_accuracy", 0444, root, &core->accuracy);
3729 debugfs_create_file("clk_phase", clk_phase_mode, root, core,
3731 debugfs_create_file("clk_flags", 0444, root, core, &clk_flags_fops);
3732 debugfs_create_u32("clk_prepare_count", 0444, root, &core->prepare_count);
3733 debugfs_create_u32("clk_enable_count", 0444, root, &core->enable_count);
3734 debugfs_create_u32("clk_protect_count", 0444, root, &core->protect_count);
3735 debugfs_create_u32("clk_notifier_count", 0444, root, &core->notifier_count);
3736 debugfs_create_file("clk_duty_cycle", 0444, root, core,
3739 debugfs_create_file("clk_prepare_enable", 0644, root, core,
3743 debugfs_create_file("clk_parent", 0644, root, core,
3748 debugfs_create_file("clk_parent", 0444, root, core,
3752 debugfs_create_file("clk_possible_parents", 0444, root, core,
3993 * list. If clk doesn't have any parents then place it in the root
4526 static void clk_core_evict_parent_cache_subtree(struct clk_core *root,
4532 for (i = 0; i < root->num_parents; i++)
4533 if (root->parents[i].core == target)
4534 root->parents[i].core = NULL;
4536 hlist_for_each_entry(child, &root->children, child_node)
4544 struct clk_core *root;
4549 hlist_for_each_entry(root, *lists, child_node)
4550 clk_core_evict_parent_cache_subtree(root, core);