voodoofb.c | 1355 int m, n, k, best_m, best_n, best_k, f_cur, best_error; local in function:voodoofb_calc_pll 1373 f_cur = REFFREQ * (n + 2); 1374 if (f_cur < freq) { 1375 f_cur = f_cur / 3; 1376 if (freq - f_cur < best_error) { 1377 best_error = freq - f_cur; 1386 f_cur = REFFREQ * (n + 2) / (m + 2) / (1 << k); 1387 if (ABS(f_cur - freq) < best_error) { 1388 best_error = ABS(f_cur - freq) [all...] |