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

Kevin Brace kevinbrace at kemper.freedesktop.org
Wed Jul 26 04:16:18 UTC 2017


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

New commits:
commit c805b10c524aea6a00efb90e093cc04da7d5bc34
Author: Kevin Brace <kevinbrace at gmx.com>
Date:   Tue Jul 25 21:00:25 2017 -0700

    Version bumped to 0.6.157
    
    Changed the way OpenChrome DRM initialization is done.
    
    Signed-off-by: Kevin Brace <kevinbrace at gmx.com>

diff --git a/configure.ac b/configure.ac
index b2433f5..96fab39 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@
 # Initialize Autoconf
 AC_PREREQ(2.57)
 AC_INIT([xf86-video-openchrome],
-        [0.6.156],
+        [0.6.157],
         [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg&component=Driver/openchrome],
         [xf86-video-openchrome])
 
commit 7095fd0fbd1557bba112bbf20bc8281f049bdc6e
Author: Kevin Brace <kevinbrace at gmx.com>
Date:   Tue Jul 25 20:59:35 2017 -0700

    Updating the initialization of KMS supporting OpenChrome DRM
    
    Signed-off-by: Kevin Brace <kevinbrace at gmx.com>

diff --git a/src/via_driver.c b/src/via_driver.c
index 43e923d..221c589 100644
--- a/src/via_driver.c
+++ b/src/via_driver.c
@@ -1107,7 +1107,7 @@ VIAPreInit(ScrnInfoPtr pScrn, int flags)
     pVia->KMS = FALSE;
 #ifdef HAVE_DRI
     busId = DRICreatePCIBusID(pVia->PciInfo);
-    pVia->drmmode.fd = drmOpen("via", busId);
+    pVia->drmmode.fd = drmOpen("openchrome", busId);
     if (pVia->drmmode.fd != -1) {
         if (!drmCheckModesettingSupported(busId)) {
             xf86DrvMsg(-1, X_INFO, "[drm] KMS supported\n");
@@ -1123,7 +1123,7 @@ VIAPreInit(ScrnInfoPtr pScrn, int flags)
             drmFreeVersion(drmVer);
 
             xf86DrvMsg(pScrn->scrnIndex, X_INFO,
-                        "[drm] via interface version: %d.%d.%d\n",
+                        "[drm] OpenChrome DRM Interface Version: %d.%d.%d\n",
                         pVia->drmVerMajor, pVia->drmVerMinor, pVia->drmVerPL);
 
             /* DRI2 or DRI1 support */


More information about the Openchrome-devel mailing list