diff options
author | Kaleb Keithley <kaleb@freedesktop.org> | 2003-12-19 20:55:10 +0000 |
---|---|---|
committer | Kaleb Keithley <kaleb@freedesktop.org> | 2003-12-19 20:55:10 +0000 |
commit | 64d7bbf0ac060a57761aa2ecf21ddbe8169674c0 (patch) | |
tree | 4aea8017ba254dcc7dec149c85bceeb4a6f35caa | |
parent | 418eaaee109acd3ea178b147dd29f90318d159f9 (diff) |
XFree86 4.3.99.902 (RC 2)xf86-4_3_99_902
-rw-r--r-- | src/i810_driver.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/i810_driver.c b/src/i810_driver.c index 2077b1fe..a5cbf9da 100644 --- a/src/i810_driver.c +++ b/src/i810_driver.c @@ -25,7 +25,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. **************************************************************************/ -/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/i810/i810_driver.c,v 1.97 2003/12/01 03:20:15 dawes Exp $ */ +/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/i810/i810_driver.c,v 1.98 2003/12/07 18:28:07 dawes Exp $ */ /* * Reformatted with GNU indent (2.2.8), using the following options: @@ -927,7 +927,8 @@ I810PreInit(ScrnInfoPtr pScrn, int flags) } clockRanges = xnfcalloc(sizeof(ClockRange), 1); clockRanges->next = NULL; - clockRanges->minClock = 2000; /* !!! What's the min clock? !!! */ + /* 9.4MHz appears to be the smallest that works. */ + clockRanges->minClock = 9500; clockRanges->maxClock = pI810->MaxClock; clockRanges->clockIndex = -1; clockRanges->interlaceAllowed = TRUE; |