configure.ac | 2 +- src/via_display.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-)
New commits: commit 123a76e4868991f5b38573994ce1929c3484f268 Author: Kevin Brace <kevinbr...@gmx.com> Date: Sun Apr 24 00:15:18 2016 -0700 Version bumped to 0.4.132 Signed-off-by: Kevin Brace <kevinbr...@gmx.com> diff --git a/configure.ac b/configure.ac index 7606645..8c2dcf6 100644 --- a/configure.ac +++ b/configure.ac @@ -23,7 +23,7 @@ # Initialize Autoconf AC_PREREQ(2.57) AC_INIT([xf86-video-openchrome], - [0.4.131], + [0.4.132], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg&component=Driver/openchrome], [xf86-video-openchrome]) commit 7e5512c74af2f217b05e717951973976194fa424 Author: Kevin Brace <kevinbr...@gmx.com> Date: Sun Apr 24 00:12:50 2016 -0700 Setting Horizontal Retrace Start Bits[11] correctly It appears that the previous developers made a mistake when trying to detect the current chipset, and as a result, 3X5.5D[7]: Horizontal Retrace Start Bits[11], was not being set correctly. This same mistake exists elsewhere in the code, and they will be fixed fairly soon. Signed-off-by: Kevin Brace <kevinbr...@gmx.com> diff --git a/src/via_display.c b/src/via_display.c index 89c76d1..967e3a2 100644 --- a/src/via_display.c +++ b/src/via_display.c @@ -748,8 +748,8 @@ viaIGA2SetDisplayRegister(ScrnInfoPtr pScrn, DisplayModePtr mode) ViaCrtcMask(hwp, 0x5C, (temp >> 3) & 0x80, 0x80); /* For UniChrome Pro and Chrome9. */ - if ((pVia->ChipId != VIA_CLE266) - && (pVia->ChipId != VIA_KM400)) { + if ((pVia->Chipset != VIA_CLE266) + && (pVia->Chipset != VIA_KM400)) { /* 3X5.5D[7]: Horizontal Retrace Start Bits[11] */ ViaCrtcMask(hwp, 0x5D, (temp >> 4) & 0x80, 0x80); _______________________________________________ Openchrome-devel mailing list Openchrome-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/openchrome-devel