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

Kevin Brace kevinbrace at kemper.freedesktop.org
Mon Jan 1 22:30:04 UTC 2018


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

New commits:
commit cfd1321d4cdd87abb23ed2ac89cbd3daabeb0641
Author: Kevin Brace <kevinbrace at gmx.com>
Date:   Mon Jan 1 16:29:25 2018 -0600

    Version bumped to 0.6.164
    
    This version fixes a regression that occurred with the previous version.
    In particular, commit c9ad17d caused the regression.
    
    Signed-off-by: Kevin Brace <kevinbrace at gmx.com>

diff --git a/configure.ac b/configure.ac
index 77c2dfb..fae6288 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@
 # Initialize Autoconf
 AC_PREREQ(2.57)
 AC_INIT([xf86-video-openchrome],
-        [0.6.163],
+        [0.6.164],
         [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg&component=Driver/openchrome],
         [xf86-video-openchrome])
 
commit ff5f4e1928726cc654d5d9c05cae0e116e69d22d
Author: Kevin Brace <kevinbrace at gmx.com>
Date:   Mon Jan 1 16:17:04 2018 -0600

    Properly initializing DVI devices
    
    Commit c9ad17d had a bug that will cause device driver to crash
    during initialization. When via_dvi_init function was renamed to
    viaExtTMDSInit, the source that calls it was not changed, and as a
    result, the compilation script will complain about an implicit
    function declaration, but did not stop the generation of erroneous
    device driver binary code.
    
    Signed-off-by: Kevin Brace <kevinbrace at gmx.com>

diff --git a/src/via_outputs.c b/src/via_outputs.c
index b7bb871..6641b7d 100644
--- a/src/via_outputs.c
+++ b/src/via_outputs.c
@@ -70,9 +70,7 @@ viaInitDisplay(ScrnInfoPtr pScrn)
     via_tv_init(pScrn);
 
     /* DVI */
-    via_dvi_init(pScrn);
-
-    /* DVI */
+    viaExtTMDSInit(pScrn);
     viaTMDSInit(pScrn);
 
     /* VGA */


More information about the Openchrome-devel mailing list