configure.ac | 2 +- src/via_outputs.c | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-)
New commits: commit 104bf4aca901fec03f03a1bb7f20a0e70e2fb29e Author: Kevin Brace <kevinbr...@gmx.com> Date: Tue Apr 12 13:07:07 2016 -0700 Version bumped to 0.4.107 Signed-off-by: Kevin Brace <kevinbr...@gmx.com> diff --git a/configure.ac b/configure.ac index 3f91a74..98f34a0 100644 --- a/configure.ac +++ b/configure.ac @@ -23,7 +23,7 @@ # Initialize Autoconf AC_PREREQ(2.57) AC_INIT([xf86-video-openchrome], - [0.4.106], + [0.4.107], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg&component=Driver/openchrome], [xf86-video-openchrome]) commit 3eef391ccb73104b89898b148b77b78b5418cb27 Author: Kevin Brace <kevinbr...@gmx.com> Date: Tue Apr 12 13:05:36 2016 -0700 Removing possibly unnecessary display channel selection The was made within viaTMDSPower function inside via_outputs.c. Signed-off-by: Kevin Brace <kevinbr...@gmx.com> diff --git a/src/via_outputs.c b/src/via_outputs.c index 4771cc6..eabb1c6 100644 --- a/src/via_outputs.c +++ b/src/via_outputs.c @@ -1308,15 +1308,13 @@ viaTMDSPower(ScrnInfoPtr pScrn, Bool On) DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Entered viaTMDSPower.\n")); - /* Display Channel Select */ - ViaCrtcMask(hwp, 0xD2, 0x30, 0x30); - - if (On) + if (On) { /* Power on TMDS */ ViaCrtcMask(hwp, 0xD2, 0x00, 0x08); - else + } else { /* Power off TMDS */ ViaCrtcMask(hwp, 0xD2, 0x08, 0x08); + } xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Integrated TMDS (DVI) Power: %s\n", _______________________________________________ Openchrome-devel mailing list Openchrome-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/openchrome-devel