[Openchrome-devel] xf86-video-openchrome: 2 commits - configure.ac src/via_display.c

Kevin Brace kevinbrace at kemper.freedesktop.org
Thu Jun 2 17:01:32 UTC 2016


 configure.ac      |    2 +-
 src/via_display.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 4d85e8e01893b395aac3c0931fa0625350021ddc
Author: Kevin Brace <kevinbrace at gmx.com>
Date:   Thu Jun 2 10:00:53 2016 -0700

    Version bumped to 0.4.165
    
    Signed-off-by: Kevin Brace <kevinbrace at gmx.com>

diff --git a/configure.ac b/configure.ac
index 11ccb57..288b591 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@
 # Initialize Autoconf
 AC_PREREQ(2.57)
 AC_INIT([xf86-video-openchrome],
-        [0.4.164],
+        [0.4.165],
         [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg&component=Driver/openchrome],
         [xf86-video-openchrome])
 
commit 071a2c2159179c9db224c0b28aa053f41ea69206
Author: Kevin Brace <kevinbrace at gmx.com>
Date:   Thu Jun 2 09:53:42 2016 -0700

    IGA2 vertical blank start should not have 1 subtracted from it
    
    Signed-off-by: Kevin Brace <kevinbrace at gmx.com>

diff --git a/src/via_display.c b/src/via_display.c
index 0adba06..a6de57c 100644
--- a/src/via_display.c
+++ b/src/via_display.c
@@ -1954,7 +1954,7 @@ viaIGA2SetDisplayRegister(ScrnInfoPtr pScrn, DisplayModePtr mode)
     /* Vertical Blanking Start: 2048 - 1 (max) */
     DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO,
                         "IGA2 CrtcVBlankStart: %d\n", mode->CrtcVBlankStart));
-    temp = mode->CrtcVBlankStart - 1;
+    temp = mode->CrtcVBlankStart;
 
     /* 3X5.5A[7:0]: Vertical Blanking Start Bits[7:0] */
     hwp->writeCrtc(hwp, 0x5A, temp & 0xFF);


More information about the Openchrome-devel mailing list