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

Kevin Brace kevinbrace at kemper.freedesktop.org
Fri Sep 22 22:56:42 UTC 2017


 configure.ac   |    2 +-
 src/via_tmds.c |    1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 43949ae8c03904b2b92b327ac27e447f2715ad64
Author: Kevin Brace <kevinbrace at gmx.com>
Date:   Fri Sep 22 15:55:28 2017 -0700

    Version bumped to 0.6.161
    
    Fix for SiI 164 or VT1632(A) not working properly with CX700 / VX700,
    VX800, VX855, and VX900 chipsets
    
    Signed-off-by: Kevin Brace <kevinbrace at gmx.com>

diff --git a/configure.ac b/configure.ac
index f749d37..91e9c3b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@
 # Initialize Autoconf
 AC_PREREQ(2.57)
 AC_INIT([xf86-video-openchrome],
-        [0.6.160],
+        [0.6.161],
         [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg&component=Driver/openchrome],
         [xf86-video-openchrome])
 
commit fe7e805e92e80b587bf4f2e918f4c79d1848dec8
Author: Kevin Brace <kevinbrace at gmx.com>
Date:   Fri Sep 22 15:52:28 2017 -0700

    Missing break statement inside viaExtTMDSProbe
    
    This programming error would have rendered CX700 / VX700, VX800,
    VX855, and VX900 chipsets DVP1 (Digital Video Port 1) for external
    TMDS transmitter (DVI) inoperable. This impacted SiI 164 and
    VT1632(A).
    
    Signed-off-by: Kevin Brace <kevinbrace at gmx.com>

diff --git a/src/via_tmds.c b/src/via_tmds.c
index 8074910..2bbfe21 100644
--- a/src/via_tmds.c
+++ b/src/via_tmds.c
@@ -1161,6 +1161,7 @@ viaExtTMDSProbe(ScrnInfoPtr pScrn)
         case VIA_VX855:
         case VIA_VX900:
             pVIADisplay->extTMDSDIPort = VIA_DI_PORT_DVP1;
+            break;
         default:
             pVIADisplay->extTMDSDIPort = VIA_DI_PORT_NONE;
             break;


More information about the Openchrome-devel mailing list