diff options
author | Aaron Plattner <aplattner@nvidia.com> | 2008-02-19 14:17:57 -0800 |
---|---|---|
committer | Aaron Plattner <aplattner@nvidia.com> | 2008-02-19 14:17:57 -0800 |
commit | a87b93d5c5b4d1a65a60dad271b06a2d560b71b8 (patch) | |
tree | 3632e80d0076b18ae7c66f44581cec170fce15fc /src/g80_sor.c | |
parent | 3f2a1898fedbada151da31fc163ae54daac0e896 (diff) |
G80: Fix connector mapping and TMDS initialization on certain GPUs.
Diffstat (limited to 'src/g80_sor.c')
-rw-r--r-- | src/g80_sor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/g80_sor.c b/src/g80_sor.c index 0b39005..02a5f3b 100644 --- a/src/g80_sor.c +++ b/src/g80_sor.c @@ -41,7 +41,7 @@ G80SorSetPClk(xf86OutputPtr output, int pclk) const int orOff = 0x800 * pPriv->or; const int limit = 165000; - pNv->reg[(0x00614300+orOff)/4] = (pclk > limit) ? 0x101 : 0; + pNv->reg[(0x00614300+orOff)/4] = 0x70000 | (pclk > limit ? 0x101 : 0); } static void |