diff options
author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-06-04 20:26:28 +0000 |
---|---|---|
committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-06-04 20:26:28 +0000 |
commit | b67f9f5c875efaa41bded7ed2f38b2a5fbd17597 (patch) | |
tree | 597a67a5c46a4f2f5df9a689686bd6b896471173 /src/atipreinit.c | |
parent | daae70d9083e9c15358f160f0df3176e344f1cb9 (diff) |
Sync with 6.8.2 branch: Bug #591XORG-6_8_99_11XORG-6_8_99_10
(https://bugs.freedesktop.org/show_bug.cgi?id=591) attachment #308
(https://bugs.freedesktop.org/attachment.cgi?id=308): Fix video timing
problems with Sony PCG-C1VN Vaio Picturebook notebook && co. Patch by
Marc Aurele La France
Diffstat (limited to 'src/atipreinit.c')
-rw-r--r-- | src/atipreinit.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/atipreinit.c b/src/atipreinit.c index 4327efb..ae9b64b 100644 --- a/src/atipreinit.c +++ b/src/atipreinit.c @@ -1,4 +1,5 @@ /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/ati/atipreinit.c,v 1.74 2003/12/22 17:48:09 tsi Exp $ */ +/* $XdotOrg: $ */ /* * Copyright 1999 through 2004 by Marc Aurele La France (TSI @ UQV), tsi@xfree86.org * @@ -1937,11 +1938,11 @@ ATIPreInit VBlankEnd += 0x0100U; pATI->LCDHBlankWidth = HBlankEnd - HBlankStart; - pATI->LCDHSyncStart = HSyncStart - HBlankStart - 1; + pATI->LCDHSyncStart = HSyncStart - HBlankStart; pATI->LCDHSyncWidth = HSyncEnd - HSyncStart; pATI->LCDVBlankWidth = VBlankEnd - VBlankStart; - pATI->LCDVSyncStart = VSyncStart - VBlankStart - 1; + pATI->LCDVSyncStart = VSyncStart - VBlankStart; pATI->LCDVSyncWidth = VSyncEnd - VSyncStart; HDisplay = HTotal + 5 - pATI->LCDHBlankWidth; |