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

Kevin Brace kevinbrace at kemper.freedesktop.org
Thu Jun 2 16:06:21 UTC 2016


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

New commits:
commit e58c52c0965ab7f34e474f555ead5aa165b40f84
Author: Kevin Brace <kevinbrace at gmx.com>
Date:   Thu Jun 2 09:05:48 2016 -0700

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

diff --git a/configure.ac b/configure.ac
index 3e2dce5..804ce21 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@
 # Initialize Autoconf
 AC_PREREQ(2.57)
 AC_INIT([xf86-video-openchrome],
-        [0.4.162],
+        [0.4.163],
         [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg&component=Driver/openchrome],
         [xf86-video-openchrome])
 
commit 8fdf0d61d4447737a166801b570e29464f2c373e
Author: Kevin Brace <kevinbrace at gmx.com>
Date:   Thu Jun 2 08:50:00 2016 -0700

    IGA2 horizontal blank start should not have 1 subtracted from it
    
    After thinking about IGA2 horizontal blank start, it should not have
    a value of 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 abf9549..892c563 100644
--- a/src/via_display.c
+++ b/src/via_display.c
@@ -1861,7 +1861,7 @@ viaIGA2SetDisplayRegister(ScrnInfoPtr pScrn, DisplayModePtr mode)
     /* Horizontal Blanking Start: 2048 - 1 (max) */
     DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO,
                         "IGA2 CrtcHBlankStart: %d\n", mode->CrtcHBlankStart));
-    temp = mode->CrtcHBlankStart - 1;
+    temp = mode->CrtcHBlankStart;
 
     /* 3X5.52[7:0]: Horizontal Blanking Start Bits[7:0] */
     hwp->writeCrtc(hwp, 0x52, temp & 0xFF);


More information about the Openchrome-devel mailing list