Displaying 1 result from an estimated 1 matches for "crystalfreqkhz".
2008 Jun 01
0
Clock speed for GeForce 6100
...3:17:39.000000000 +0100
+++ xf86-video-nv-2.1.6.mihai/nouveau-20070920/src/nv_setup.c
2008-06-01 15:45:53.000000000 +0100
@@ -333,7 +333,10 @@
if(pNv->twoHeads && (implementation != CHIPSET_NV11))
{
if(nvReadEXTDEV(pNv, 0x0000) & (1 << 22))
- pNv->CrystalFreqKHz = 27000;
+ if(implementation == CHIPSET_C512)
+ pNv->CrystalFreqKHz = 25000;
+ else
+ pNv->CrystalFreqKHz = 27000;
}
pNv->CURSOR = NULL; /* can't set this here */
A similar patch fixed the nv driver.
The above patc...