diff options
author | Kaleb Keithley <kaleb@freedesktop.org> | 2003-12-20 00:28:27 +0000 |
---|---|---|
committer | Kaleb Keithley <kaleb@freedesktop.org> | 2003-12-20 00:28:27 +0000 |
commit | 775f4085e0939561304642567ae0395f8a2f534d (patch) | |
tree | 021d29d3f7a9cb0abefe35e18106ae2ce4b460b0 | |
parent | a70ca8484a4c337b1c5c73960e23cc0deb0f5805 (diff) |
merge XFree86 RC2 (4.3.99.902) from vendor branchXEVIE-BASE
-rw-r--r-- | src/i810_driver.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/i810_driver.c b/src/i810_driver.c index 2d73321a..e1f565f2 100644 --- a/src/i810_driver.c +++ b/src/i810_driver.c @@ -25,8 +25,8 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. **************************************************************************/ -/* $XdotOrg: 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.97 2003/12/01 03:20:15 dawes Exp $ */ +/* $XdotOrg: xc/programs/Xserver/hw/xfree86/drivers/i810/i810_driver.c,v 1.1.4.2 2003/12/06 13:24:24 kaleb 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: @@ -928,7 +928,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; |