diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/atombios_crtc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/atombios_crtc.c b/src/atombios_crtc.c index 3f2e1136..4e2395f8 100644 --- a/src/atombios_crtc.c +++ b/src/atombios_crtc.c @@ -224,7 +224,7 @@ atombios_crtc_set_pll(xf86CrtcPtr crtc, DisplayModePtr mode, int pll_flags) if (IS_AVIVO_VARIANT) { uint32_t temp; - if (mode->Clock > 200000) /* range limits??? */ + if (IS_DCE3_VARIANT && mode->Clock > 200000) /* range limits??? */ pll_flags |= RADEON_PLL_PREFER_HIGH_FB_DIV; else pll_flags |= RADEON_PLL_PREFER_LOW_REF_DIV; |