Lines Matching defs:fract
69 static void clk_fd_get_div(struct clk_hw *hw, struct u32_fract *fract)
100 fract->numerator = m;
101 fract->denominator = n;
106 struct u32_fract fract;
109 clk_fd_get_div(hw, &fract);
111 if (!fract.numerator || !fract.denominator)
114 ret = (u64)parent_rate * fract.numerator;
115 do_div(ret, fract.denominator);
209 struct u32_fract fract;
211 clk_fd_get_div(hw, &fract);
213 *val = fract.numerator;
221 struct u32_fract fract;
223 clk_fd_get_div(hw, &fract);
225 *val = fract.denominator;