[Openchrome-devel] xf86-video-openchrome: 2 commits - configure.ac src/via_tmds.c
Kevin Brace
kevinbrace at kemper.freedesktop.org
Sat Sep 17 21:12:55 UTC 2016
configure.ac | 2 +-
src/via_tmds.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
New commits:
commit cdc5d9617646ecc6a83cdd1e9229a6b8be1e2f4f
Author: Kevin Brace <kevinbrace at gmx.com>
Date: Sat Sep 17 14:12:43 2016 -0700
Version bumped to 0.5.156
Signed-off-by: Kevin Brace <kevinbrace at gmx.com>
diff --git a/configure.ac b/configure.ac
index 79eb718..3e62398 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@
# Initialize Autoconf
AC_PREREQ(2.57)
AC_INIT([xf86-video-openchrome],
- [0.5.155],
+ [0.5.156],
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg&component=Driver/openchrome],
[xf86-video-openchrome])
commit f548b2991e3fe1c25a4a4c1e6cc694ea0592a22d
Author: Kevin Brace <kevinbrace at gmx.com>
Date: Sat Sep 17 14:11:37 2016 -0700
Correcting a bug in DVI presence detection
The bit position used to test the presence of a DVI monitor was
referring the wrong bit position. This only affects those with
an integrated TMDS transmitter.
Signed-off-by: Kevin Brace <kevinbrace at gmx.com>
diff --git a/src/via_tmds.c b/src/via_tmds.c
index 7aee063..805f4fb 100644
--- a/src/via_tmds.c
+++ b/src/via_tmds.c
@@ -203,7 +203,7 @@ viaTMDSSense(ScrnInfoPtr pScrn)
* 0: No connect
* 1: Connected */
sr1a = hwp->readSeq(hwp, 0x1A);
- if (sr1a & 0x20) {
+ if (sr1a & 0x10) {
tmdsReceiverDetected = TRUE;
}
More information about the Openchrome-devel
mailing list