diff options
author | Brice Goglin <Brice.Goglin@ens-lyon.org> | 2007-07-27 18:19:21 +0200 |
---|---|---|
committer | Brice Goglin <Brice.Goglin@ens-lyon.org> | 2007-07-27 18:19:21 +0200 |
commit | 1a1fe837bc114b5f741e87f14bef74803e299c8d (patch) | |
tree | 1dcdfa825bd5157eb7aab80bfc86183160d84c41 | |
parent | 041caa230b91a017881394c59d76d663d647529c (diff) |
Change minimal frequency guess from 12 to 16MHz
G550 seems to lock up with frequencies below 16MHz.
Reported by Benjamin Wong <hackerb9@u.washington.edu> in
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=430112
and https://bugs.freedesktop.org/show_bug.cgi?id=11339
-rw-r--r-- | src/mga_driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mga_driver.c b/src/mga_driver.c index 42b428d..eb05d11 100644 --- a/src/mga_driver.c +++ b/src/mga_driver.c @@ -2024,7 +2024,7 @@ MGAPreInit(ScrnInfoPtr pScrn, int flags) /* XXX Set HW cursor use */ /* Set the min pixel clock */ - pMga->MinClock = 12000; /* XXX Guess, need to check this */ + pMga->MinClock = 16000; xf86DrvMsg(pScrn->scrnIndex, X_DEFAULT, "Min pixel clock is %d MHz\n", pMga->MinClock / 1000); /* |