forked from luck/tmp_suning_uos_patched
VIDEO: cyberpro: select lowest multipler/divisor for PLL
The lowest closest multiplier/divisor combination should be used for the PLL, not the largest. Reverse the search order. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
1bae4ce27c
commit
fcd3c7796c
@ -681,9 +681,9 @@ cyber2000fb_decode_clock(struct par_info *hw, struct cfb_info *cfb,
|
|||||||
* pll_ps_calc = best_div1 / (ref_ps * best_mult)
|
* pll_ps_calc = best_div1 / (ref_ps * best_mult)
|
||||||
*/
|
*/
|
||||||
best_diff = 0x7fffffff;
|
best_diff = 0x7fffffff;
|
||||||
best_mult = 32;
|
best_mult = 2;
|
||||||
best_div1 = 255;
|
best_div1 = 32;
|
||||||
for (t_div1 = 32; t_div1 > 1; t_div1 -= 1) {
|
for (t_div1 = 2; t_div1 < 32; t_div1 += 1) {
|
||||||
u_int rr, t_mult, t_pll_ps;
|
u_int rr, t_mult, t_pll_ps;
|
||||||
int diff;
|
int diff;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user