[Openchrome-devel] xf86-video-openchrome: 2 commits - configure.ac src/via_display.c
Kevin Brace
kevinbrace at kemper.freedesktop.org
Thu Jun 2 16:32:28 UTC 2016
configure.ac | 2 +-
src/via_display.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 48061dade82eede04efe2bd641a7e3164190d097
Author: Kevin Brace <kevinbrace at gmx.com>
Date: Thu Jun 2 09:31:54 2016 -0700
Version bumped to 0.4.164
Signed-off-by: Kevin Brace <kevinbrace at gmx.com>
diff --git a/configure.ac b/configure.ac
index 804ce21..11ccb57 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@
# Initialize Autoconf
AC_PREREQ(2.57)
AC_INIT([xf86-video-openchrome],
- [0.4.163],
+ [0.4.164],
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg&component=Driver/openchrome],
[xf86-video-openchrome])
commit c1bf2ec5cec5782584dce378efa22d1aa8f6a5a1
Author: Kevin Brace <kevinbrace at gmx.com>
Date: Thu Jun 2 09:30:51 2016 -0700
IGA2 horizontal retrace end should be obtained differently
Signed-off-by: Kevin Brace <kevinbrace at gmx.com>
diff --git a/src/via_display.c b/src/via_display.c
index 892c563..0adba06 100644
--- a/src/via_display.c
+++ b/src/via_display.c
@@ -1915,7 +1915,7 @@ viaIGA2SetDisplayRegister(ScrnInfoPtr pScrn, DisplayModePtr mode)
/* Horizontal Retrace End: 511 (max) */
DEBUG(xf86DrvMsg(pScrn->scrnIndex, X_INFO,
"IGA2 CrtcHSyncEnd: %d\n", mode->CrtcHSyncEnd));
- temp = mode->CrtcHSyncEnd - mode->CrtcHSyncStart;
+ temp = mode->CrtcHSyncEnd - 1;
/* 3X5.57[7:0]: Horizontal Retrace End Bits[7:0] */
hwp->writeCrtc(hwp, 0x57, temp & 0xFF);
More information about the Openchrome-devel
mailing list