xf86-video-intel: 2 commits - configure.ac NEWS src/uxa/intel_display.c

Chris Wilson ickle at kemper.freedesktop.org
Mon Sep 8 00:55:18 PDT 2014


 NEWS                    |    6 ++++++
 configure.ac            |    2 +-
 src/uxa/intel_display.c |    6 ++++++
 3 files changed, 13 insertions(+), 1 deletion(-)

New commits:
commit 692c14d405bb352697b67f36a034d4963e272b66
Author: Chris Wilson <chris at chris-wilson.co.uk>
Date:   Mon Sep 8 08:53:32 2014 +0100

    2.99.916 snapshot

diff --git a/NEWS b/NEWS
index 51486f3..4b7aa4f 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,9 @@
+Snapshot 2.99.916 (2014-09-08)
+==============================
+Quick update for MST in UXA - we need to hook up the RandR outputs for
+dynamicaly added connectors.
+
+
 Snapshot 2.99.915 (2014-09-08)
 ==============================
 A significant change to UXA to enable MST and to keep it working on recent
diff --git a/configure.ac b/configure.ac
index e7419a2..0191bd5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@
 # Initialize Autoconf
 AC_PREREQ([2.60])
 AC_INIT([xf86-video-intel],
-        [2.99.915],
+        [2.99.916],
         [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
         [xf86-video-intel])
 AC_CONFIG_SRCDIR([Makefile.am])
commit 84fb3bb65ff917b908a1036540432bfd5525481d
Author: Dave Airlie <airlied at redhat.com>
Date:   Mon Sep 8 17:46:18 2014 +1000

    uxa: actually create the randr outputs for hotplug connectors
    
    I somehow lost this chunk in my mst patch I sent.
    
    Signed-off-by: Dave Airlie <airlied at redhat.com>

diff --git a/src/uxa/intel_display.c b/src/uxa/intel_display.c
index c5f0620..97af76d 100644
--- a/src/uxa/intel_display.c
+++ b/src/uxa/intel_display.c
@@ -1524,6 +1524,12 @@ intel_output_init(ScrnInfoPtr scrn, struct intel_mode *mode, drmModeResPtr mode_
 	output->interlaceAllowed = TRUE;
 
 	intel_output->output = output;
+
+	if (dynamic) {
+		output->randr_output = RROutputCreate(xf86ScrnToScreen(scrn), output->name, strlen(output->name), output);
+		intel_output_create_resources(output);
+	}
+
 	list_add(&intel_output->link, &mode->outputs);
 	return;
 


More information about the xorg-commit mailing list