Lines Matching defs:parent
16 struct clk_hw *parent, *grandparent;
29 /* Get our parent clock, it's the one that can adjust its rate */
30 parent = clk_hw_get_parent(hw);
31 if (!parent)
35 parent_rate = clk_hw_get_rate(parent);
39 /* Now, get our parent's parent (most likely some PLL) */
40 grandparent = clk_hw_get_parent(parent);
49 /* Get our parent clock divider */
59 struct clk_hw *parent, *grandparent;
65 /* Get our parent clock, it's the one that can adjust its rate */
66 parent = clk_hw_get_parent(hw);
67 if (!parent)
71 parent_rate = clk_hw_get_rate(parent);
75 /* Now, get our parent's parent (most likely some PLL) */
76 grandparent = clk_hw_get_parent(parent);
88 /* Get our parent divider */
95 * Since our parent clock is only a divider, and the
102 * the divider set by our parent clock.