diff options
author | George Sapountzis <gsap7@yahoo.gr> | 2008-02-07 18:03:03 +0200 |
---|---|---|
committer | George Sapountzis <gsap7@yahoo.gr> | 2008-02-07 18:03:03 +0200 |
commit | 933328ffd6d1d872a18d3de8624c4df845a64588 (patch) | |
tree | c200013792a56331f08861086974cf13abf1abc5 | |
parent | 956c8c81f3ff434930a0cb17b027b2f8e4eeabb2 (diff) |
mach64: complement hint for sparc
-rw-r--r-- | src/aticlock.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/aticlock.c b/src/aticlock.c index 8dd79d4..f4de77f 100644 --- a/src/aticlock.c +++ b/src/aticlock.c @@ -140,12 +140,13 @@ ATIClockPreInit ((double)pATI->ReferenceDenominator * 1000.0)); #if defined(__sparc__) - if (pATI->ReferenceNumerator != 315000 && - pATI->ReferenceDenominator != 11) + if ((pATI->refclk / 100000) != 286 && + (pATI->refclk / 100000) != 295) { xf86DrvMsg(pScreenInfo->scrnIndex, X_INFO, "If modes do not work on Ultra 5/10 or Blade 100/150,\n" - "set option \"reference_clock\" to \"28.636 MHz\"\n"); + "\tset option \"reference_clock\" to \"28.636 MHz\"" + " or \"29.5 MHz\"\n"); } #endif |