diff options
author | Paul TBBle Hampson <Paul.Hampson@pobox.com> | 2007-06-02 14:28:18 -0400 |
---|---|---|
committer | Alex Deucher <alex@t41p.hsd1.va.comcast.net> | 2007-06-02 14:28:18 -0400 |
commit | 5a9516fe4f17854acd4fbf3a8eadf5139081dbd4 (patch) | |
tree | a27ed9fcea23d51189a562f37a9c969a01b16615 | |
parent | 802804461ebdca9a951e7e562ec68fd08d8eae01 (diff) |
RADEONProbePLLParameters sets pll->reference_div, and
RADEONGetPanelInfoFromReg uses it.
This ensures that the former is called before the latter.
(this should fix randr on ppc)
-rw-r--r-- | src/radeon_driver.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/radeon_driver.c b/src/radeon_driver.c index 925b8ee..1c433e2 100644 --- a/src/radeon_driver.c +++ b/src/radeon_driver.c @@ -2497,14 +2497,14 @@ static Bool RADEONPreInitControllers(ScrnInfoPtr pScrn, xf86Int10InfoPtr pInt10 RADEONGetBIOSInfo(pScrn, pInt10); + RADEONGetClockInfo(pScrn); + if (!RADEONSetupConnectors(pScrn)) { return FALSE; } RADEONPrintPortMap(pScrn); - RADEONGetClockInfo(pScrn); - for (i = 0; i < config->num_output; i++) { xf86OutputPtr output = config->output[i]; |