Lines Matching defs:prate
132 unsigned long *prate)
140 divisor = *prate / rate;
142 /* If prate / rate would be decimal, incr the divisor */
143 if (rate * divisor < *prate)
154 return *prate / divisor;
598 unsigned long *prate)
607 ret = vt8500_find_pll_bits(rate, *prate, &mul, &div1);
609 round_rate = VT8500_BITS_TO_FREQ(*prate, mul, div1);
612 ret = wm8650_find_pll_bits(rate, *prate, &mul, &div1, &div2);
614 round_rate = WM8650_BITS_TO_FREQ(*prate, mul, div1, div2);
617 ret = wm8750_find_pll_bits(rate, *prate, &filter, &mul, &div1, &div2);
619 round_rate = WM8750_BITS_TO_FREQ(*prate, mul, div1, div2);
622 ret = wm8850_find_pll_bits(rate, *prate, &mul, &div1, &div2);
624 round_rate = WM8850_BITS_TO_FREQ(*prate, mul, div1, div2);