View | Details | Raw Unified | Return to bug 216296
Collapse All | Expand All

(-)x11-drivers/xf86-video-trident/Makefile (-1 / +1 lines)
Lines 1-7 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME=	xf86-video-trident
3
PORTNAME=	xf86-video-trident
4
PORTVERSION=	1.3.7
4
PORTVERSION=	1.3.8
5
CATEGORIES=	x11-drivers
5
CATEGORIES=	x11-drivers
6
6
7
MAINTAINER=	x11@FreeBSD.org
7
MAINTAINER=	x11@FreeBSD.org
(-)x11-drivers/xf86-video-trident/distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (xorg/driver/xf86-video-trident-1.3.7.tar.bz2) = ecd518de627a0d49e17c158bfc72ab657386c6907c91ef89fa09332558e413ae
1
TIMESTAMP = 1484716004
2
SIZE (xorg/driver/xf86-video-trident-1.3.7.tar.bz2) = 376898
2
SHA256 (xorg/driver/xf86-video-trident-1.3.8.tar.bz2) = 9e5119d974c3e2221994542d35e3a0b3426a441869ddd6dd08a84f324856ac3f
3
SIZE (xorg/driver/xf86-video-trident-1.3.8.tar.bz2) = 387742
(-)x11-drivers/xf86-video-trident/files/patch-src_trident__dac.c (+15 lines)
Line 0 Link Here
1
# Fix a style warning
2
#
3
--- src/trident_dac.c.orig	2013-02-07 07:56:43 UTC
4
+++ src/trident_dac.c
5
@@ -1226,8 +1226,8 @@ Tridentddc1Read(ScrnInfoPtr pScrn)
6
     OUTW(0x3C4, (temp << 8) | NewMode1);
7
 
8
     /* Wait until vertical retrace is in progress. */
9
-    while (INB(vgaIOBase + 0xA) & 0x08);
10
-    while (!(INB(vgaIOBase + 0xA) & 0x08));
11
+    while (INB(vgaIOBase + 0xA) & 0x08) {}
12
+    while (!(INB(vgaIOBase + 0xA) & 0x08)) {}
13
 
14
     /* Get the result */
15
     OUTB(vgaIOBase + 4, I2C);
(-)x11-drivers/xf86-video-trident/files/patch-src_trident__driver.c (+13 lines)
Line 0 Link Here
1
# Correct a string that should be const
2
#
3
--- src/trident_driver.c.orig	2015-03-30 17:05:53 UTC
4
+++ src/trident_driver.c
5
@@ -1010,7 +1010,7 @@ TRIDENTPreInit(ScrnInfoPtr pScrn, int fl
6
     ClockRangePtr clockRanges;
7
     Bool ddcLoaded = FALSE;
8
     xf86MonPtr pMon = NULL;
9
-    char *s;
10
+    const char *s;
11
     Bool tmp_bool;
12
 
13
     /* Allocate the TRIDENTRec driverPrivate */

Return to bug 216296