summaryrefslogtreecommitdiff
path: root/src/i830_driver.c
diff options
context:
space:
mode:
authorDavid Airlie <airlied@asimov.stargames.com.au>2006-03-22 12:07:05 +1100
committerDave Airlie <airlied@linux.ie>2006-06-02 10:01:43 +1000
commit540cd6985301443011be51f2345caac72850e71f (patch)
tree99f87a279c1f6edd5728d04bd9db13594e7f1ca4 /src/i830_driver.c
parent595084d955237f65ddbdc811083b44a328f53e5a (diff)
make 640x480 and 800x600 work
brute force method
Diffstat (limited to 'src/i830_driver.c')
-rw-r--r--src/i830_driver.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/i830_driver.c b/src/i830_driver.c
index 3defa90b..aca8c281 100644
--- a/src/i830_driver.c
+++ b/src/i830_driver.c
@@ -3624,8 +3624,8 @@ I830BIOSPreInit(ScrnInfoPtr pScrn, int flags)
clockRanges = xnfcalloc(sizeof(ClockRange), 1);
clockRanges->next = NULL;
- /* 9.4MHz appears to be the smallest that works. */
- clockRanges->minClock = 9500;
+ /* 25MHz appears to be the smallest that works. */
+ clockRanges->minClock = 25000;
clockRanges->maxClock = pI830->MaxClock;
clockRanges->clockIndex = -1;
clockRanges->interlaceAllowed = TRUE;