Lines Matching defs:rate
14 * requested rate.
19 unsigned long rate, parent_rate, parent_rate_before, m, n, max_n;
28 rate = 240000000;
29 parent_rate = (max_n + 1) * rate; /* so that it exceeds the maximum divisor */
32 clk_fractional_divider_general_approximation(&fd->hw, rate, &parent_rate, &m, &n);
43 * requested rate.
48 unsigned long rate, parent_rate, parent_rate_before, m, n, max_m;
57 rate = 240000000;
58 parent_rate = rate / (max_m + 1); /* so that it exceeds the maximum numerator */
61 clk_fractional_divider_general_approximation(&fd->hw, rate, &parent_rate, &m, &n);
72 * requested rate.
77 unsigned long rate, parent_rate, parent_rate_before, m, n, max_n;
87 rate = 240000000;
88 parent_rate = (max_n + 1) * rate; /* so that it exceeds the maximum divisor */
91 clk_fractional_divider_general_approximation(&fd->hw, rate, &parent_rate, &m, &n);
102 * requested rate.
107 unsigned long rate, parent_rate, parent_rate_before, m, n, max_m;
117 rate = 240000000;
118 parent_rate = rate / (max_m + 1); /* so that it exceeds the maximum numerator */
121 clk_fractional_divider_general_approximation(&fd->hw, rate, &parent_rate, &m, &n);