[Openchrome-devel] xf86-video-openchrome: 2 commits - configure.ac src/via_display.c
Kevin Brace
kevinbrace at kemper.freedesktop.org
Mon Apr 18 03:22:26 UTC 2016
configure.ac | 2 +-
src/via_display.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
New commits:
commit 4d32b888bd3d2b9ba39f3f70cae4b224b4bb1b68
Author: Kevin Brace <kevinbrace at gmx.com>
Date: Sun Apr 17 20:20:31 2016 -0700
Version bumped to 0.4.123
Signed-off-by: Kevin Brace <kevinbrace at gmx.com>
diff --git a/configure.ac b/configure.ac
index 6633865..65821c1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@
# Initialize Autoconf
AC_PREREQ(2.57)
AC_INIT([xf86-video-openchrome],
- [0.4.122],
+ [0.4.123],
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg&component=Driver/openchrome],
[xf86-video-openchrome])
commit d47a3a56eae5bba59ae00014f93eb2c239c99660
Author: Kevin Brace <kevinbrace at gmx.com>
Date: Sun Apr 17 20:10:12 2016 -0700
Changing ViaSetPrimaryFIFO calling order
ViaSetPrimaryFIFO should be called right after the call to
viaIGA1SetDisplayRegister within viaIGA1SetMode function.
All these functions are located inside via_display.c.
Signed-off-by: Kevin Brace <kevinbrace at gmx.com>
diff --git a/src/via_display.c b/src/via_display.c
index 17ba151..0b1ebd2 100644
--- a/src/via_display.c
+++ b/src/via_display.c
@@ -539,14 +539,14 @@ viaIGA1SetMode(ScrnInfoPtr pScrn, DisplayModePtr mode)
ViaSeqMask(hwp, 0x59, 0x00, 0x80);
viaIGA1SetDisplayRegister(pScrn, mode);
+ ViaSetPrimaryFIFO(pScrn, mode);
+
pBIOSInfo->Clock = ViaModeDotClockTranslate(pScrn, mode);
pBIOSInfo->ClockExternal = FALSE;
/* Enable Extended Mode Memory Access. */
ViaSeqMask(hwp, 0x1A, 0x08, 0x08);
- ViaSetPrimaryFIFO(pScrn, mode);
-
ViaSetPrimaryDotclock(pScrn, pBIOSInfo->Clock);
ViaSetUseExternalClock(hwp);
ViaCrtcMask(hwp, 0x6B, 0x00, 0x01);
More information about the Openchrome-devel
mailing list