Lines Matching defs:f_LO
1379 static u32 MT2063_Round_fLO(u32 f_LO, u32 f_LO_Step, u32 f_ref)
1381 return f_ref * (f_LO / f_ref)
1382 + f_LO_Step * (((f_LO % f_ref) + (f_LO_Step / 2)) / f_LO_Step);
1417 * This function assumes that the f_LO and f_Ref are
1422 * @f_LO: desired LO frequency.
1432 u32 f_LO,
1436 *Div = f_LO / f_Ref;
1440 (64 * (((f_LO % f_Ref) + (f_LO_Step / 2)) / f_LO_Step) +
1450 * This function assumes that the f_LO and f_Ref are
1455 * @f_LO: desired LO frequency.
1463 u32 f_LO,
1467 *Div = f_LO / f_Ref;
1471 (8191 * (((f_LO % f_Ref) + (f_LO_Step / 2)) / f_LO_Step) +