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

Kevin Brace kevinbrace at kemper.freedesktop.org
Fri Jun 10 02:26:00 UTC 2016


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

New commits:
commit 059371e59dea9233662c7dde419219b18cf51703
Author: Kevin Brace <kevinbrace at gmx.com>
Date:   Thu Jun 9 21:25:04 2016 -0500

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

diff --git a/configure.ac b/configure.ac
index 3b944f7..ea6ba2e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@
 # Initialize Autoconf
 AC_PREREQ(2.57)
 AC_INIT([xf86-video-openchrome],
-        [0.4.172],
+        [0.4.173],
         [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg&component=Driver/openchrome],
         [xf86-video-openchrome])
 
commit 98027a5ec31d7d0699116384925f677e78e2cb16
Author: Kevin Brace <kevinbrace at gmx.com>
Date:   Thu Jun 9 21:22:19 2016 -0500

    Fix for IGA1 having a blue line on the right edge of the screen
    
    This was a regression that likely occurred with commit 35f964
    where IGA1 display end blanking was being turned off. Previously,
    this bit was not being initialized, and it was typically enabled by
    VIA frame buffer device driver or VGA BIOS.
    
    Suggested-by: Eric Kudzin <knoppix1337 at yahoo.com>
    Signed-off-by: Kevin Brace <kevinbrace at gmx.com>

diff --git a/src/via_display.c b/src/via_display.c
index 1211d04..7aa25a6 100644
--- a/src/via_display.c
+++ b/src/via_display.c
@@ -654,7 +654,7 @@ viaIGA1Init(ScrnInfoPtr pScrn)
      * 3X5.32[0]   - Real-Time Flipping
      *               0: Flip by the frame
      *               1: Flip by each scan line */
-    ViaCrtcMask(hwp, 0x32, 0x00, 0xEF);
+    ViaCrtcMask(hwp, 0x32, 0x04, 0xEF);
 
     /*
      * 3X5.33[7]   - Primary Display Gamma Correction
@@ -887,7 +887,7 @@ viaIGA1SetDisplayRegister(ScrnInfoPtr pScrn, DisplayModePtr mode)
      * 3X5.32[0]   - Real-Time Flipping
      *               0: Flip by the frame
      *               1: Flip by each scan line */
-    ViaCrtcMask(hwp, 0x32, 0x00, 0xEC);
+    ViaCrtcMask(hwp, 0x32, 0x04, 0xEC);
 
     /*
      * 3X5.33[7]   - Primary Display Gamma Correction


More information about the Openchrome-devel mailing list