Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 31 Jan 2003 16:45:13 -0800 (PST)
From:      Marcel Moolenaar <marcel@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 24493 for review
Message-ID:  <200302010045.h110jDij079729@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=24493

Change 24493 by marcel@marcel_nfs on 2003/01/31 16:44:33

	Fix the double cursor problem caused by using the wrong
	I/O port address for the CRTC. It was off by 4 in both
	the color and monochrome cases.

Affected files ...

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

Differences ...

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

@@ -51,7 +51,7 @@
 	mono = (misc & 1) ? 0 : 1;
 
 	cd->crtc.bst = IA64_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?200302010045.h110jDij079729>