diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2010-05-04 14:30:52 -0400 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2010-05-04 14:32:15 -0400 |
commit | 6aedd57f6c2f08d0151a8bd1c5893d40d3db709a (patch) | |
tree | 11bda31ea527dfc26202bca6f29b36220438b92a /src/radeon_atombios.c | |
parent | b2ecd1bb507ed4e0d9ba6ebd498c51da2e8136fa (diff) |
radeon: fix pll_out_min default for pre-avivo
Fixes fdo bug 27960
Diffstat (limited to 'src/radeon_atombios.c')
-rw-r--r-- | src/radeon_atombios.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/radeon_atombios.c b/src/radeon_atombios.c index 42b35d0b..30dbaf6f 100644 --- a/src/radeon_atombios.c +++ b/src/radeon_atombios.c @@ -2289,9 +2289,12 @@ RADEONGetATOMClockInfo(ScrnInfoPtr pScrn) break; } pll->reference_div = 0; - if (pll->pll_out_min == 0) - pll->pll_out_min = 64800; - + if (pll->pll_out_min == 0) { + if (IS_AVIVO_VARIANT) + pll->pll_out_min = 64800; + else + pll->pll_out_min = 20000; + } /* limiting the range is a good thing in most cases * as it limits the number of matching pll combinations, |