[Openchrome-devel] xf86-video-openchrome: 2 commits - configure.ac src/via_display.c
Kevin Brace
kevinbrace at kemper.freedesktop.org
Mon Apr 25 01:54:54 UTC 2016
configure.ac | 2 +-
src/via_display.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
New commits:
commit ff0cfff605500c5e17e18011ef2a018ba37690e2
Author: Kevin Brace <kevinbrace at gmx.com>
Date: Sun Apr 24 18:54:43 2016 -0700
Version bumped to 0.4.135
Signed-off-by: Kevin Brace <kevinbrace at gmx.com>
diff --git a/configure.ac b/configure.ac
index e07dde8..584cf24 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@
# Initialize Autoconf
AC_PREREQ(2.57)
AC_INIT([xf86-video-openchrome],
- [0.4.134],
+ [0.4.135],
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg&component=Driver/openchrome],
[xf86-video-openchrome])
commit 1f9e694702c431122cbe7e665308d443bc8428c0
Author: Kevin Brace <kevinbrace at gmx.com>
Date: Sun Apr 24 18:51:40 2016 -0700
Bad CrtcVSyncStart should be greater than 2048 for IGA2
For viaIGA2ModeValid function, a bad CrtcVSyncStart should be greater
than 2048, not 2047. This is based on observing how other parameters
are tested.
Signed-off-by: Kevin Brace <kevinbrace at gmx.com>
diff --git a/src/via_display.c b/src/via_display.c
index 2b26208..fcaf311 100644
--- a/src/via_display.c
+++ b/src/via_display.c
@@ -989,7 +989,7 @@ viaIGA2ModeValid(ScrnInfoPtr pScrn, DisplayModePtr mode)
if (mode->CrtcVBlankEnd > 2048)
return MODE_VBLANK_WIDE;
- if (mode->CrtcVSyncStart > 2047)
+ if (mode->CrtcVSyncStart > 2048)
return MODE_BAD_VVALUE;
if ((mode->CrtcVSyncEnd - mode->CrtcVSyncStart) > 32)
More information about the Openchrome-devel
mailing list