Commit 74ad54f2 authored by Christian König's avatar Christian König

drm/radeon: fix typo in finding PLL params

Otherwise the limit is raised to high.
Signed-off-by: default avatarChristian König <christian.koenig@amd.com>
Tested-by: default avatarKen Moffat <zarniwhoop@ntlworld.com>
parent 4955bb07
...@@ -999,7 +999,7 @@ void radeon_compute_pll_avivo(struct radeon_pll *pll, ...@@ -999,7 +999,7 @@ void radeon_compute_pll_avivo(struct radeon_pll *pll,
/* avoid high jitter with small fractional dividers */ /* avoid high jitter with small fractional dividers */
if (pll->flags & RADEON_PLL_USE_FRAC_FB_DIV && (fb_div % 10)) { if (pll->flags & RADEON_PLL_USE_FRAC_FB_DIV && (fb_div % 10)) {
fb_div_min = max(fb_div_min, (9 - (fb_div % 10)) * 20 + 60); fb_div_min = max(fb_div_min, (9 - (fb_div % 10)) * 20 + 50);
if (fb_div < fb_div_min) { if (fb_div < fb_div_min) {
unsigned tmp = DIV_ROUND_UP(fb_div_min, fb_div); unsigned tmp = DIV_ROUND_UP(fb_div_min, fb_div);
fb_div *= tmp; fb_div *= tmp;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment