diff options
author | Aaron Plattner <aplattner@nvidia.com> | 2008-04-27 16:23:28 -0700 |
---|---|---|
committer | Aaron Plattner <aplattner@nvidia.com> | 2008-04-28 14:45:11 -0700 |
commit | 4aa43a2b66e473f9154f1582f5cf0e4b4596e485 (patch) | |
tree | 01d6985512e6a6712bb53b8575e288593b80de22 /src/g80_display.c | |
parent | 0ddee2347109e8c64bd2cb4693b97c3fa3aab94b (diff) |
Fix a few startup bugs.
Diffstat (limited to 'src/g80_display.c')
-rw-r--r-- | src/g80_display.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/g80_display.c b/src/g80_display.c index 2e97e92..8b97b8a 100644 --- a/src/g80_display.c +++ b/src/g80_display.c @@ -407,7 +407,7 @@ G80CrtcBlankScreen(xf86CrtcPtr crtc, Bool blank) C(0x00000860 + headOff, 0); C(0x00000864 + headOff, 0); pNv->reg[0x00610380/4] = 0; - pNv->reg[0x00610384/4] = pNv->RamAmountKBytes * 1024 - 1; + pNv->reg[0x00610384/4] = pNv->videoRam * 1024 - 1; pNv->reg[0x00610388/4] = 0x150000; pNv->reg[0x0061038C/4] = 0; C(0x00000884 + headOff, (pNv->videoRam << 2) - 0x40); |