Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 12 Feb 2003 00:27:52 -0800 (PST)
From:      Marcel Moolenaar <marcel@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 25042 for review
Message-ID:  <200302120827.h1C8Rq6x095214@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help

http://perforce.freebsd.org/chv.cgi?CH=25042

Change 25042 by marcel@marcel_vaio on 2003/02/12 00:26:58

	Fix the off by 4 for the i386 version as I did for the
	ia6 version one or two weeks ago.

Affected files ...

.. //depot/projects/ia64/sys/i386/i386/vga_machdep.c#2 edit

Differences ...

==== //depot/projects/ia64/sys/i386/i386/vga_machdep.c#2 (text+ko) ====

@@ -51,7 +51,7 @@
 	mono = (misc & 1) ? 0 : 1;
 
 	cd->crtc.bst = I386_BUS_SPACE_IO;
-	cd->crtc.bsh = (mono) ? 0x3b0 : 0x3d0;
+	cd->crtc.bsh = (mono) ? 0x3b4 : 0x3d4;
 
 	return (0);
 }

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200302120827.h1C8Rq6x095214>