PERFORCE change 75925 for review

Marcel Moolenaar marcel at FreeBSD.org
Sun Apr 24 22:08:46 PDT 2005


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

Change 75925 by marcel at marcel_nfs on 2005/04/25 05:08:02

	Include all the necessary headers in order to have
	KERNBASE defined, so that we can construct the KVA
	of the VGA frame buffer.
	Not tested on: i386

Affected files ...

.. //depot/projects/tty/sys/dev/vga/vga_cpu_amd64.c#2 edit
.. //depot/projects/tty/sys/dev/vga/vga_cpu_i386.c#3 edit

Differences ...

==== //depot/projects/tty/sys/dev/vga/vga_cpu_amd64.c#2 (text+ko) ====

@@ -30,8 +30,13 @@
 #include <sys/param.h>
 #include <sys/bus.h>
 
+#include <vm/vm.h>
+#include <vm/pmap.h>
+
 #include <machine/bus.h>
 #include <machine/md_var.h>
+#include <machine/pmap.h>
+#include <machine/vmparam.h>
 
 #include <dev/vga/vga.h>
 

==== //depot/projects/tty/sys/dev/vga/vga_cpu_i386.c#3 (text+ko) ====

@@ -30,8 +30,13 @@
 #include <sys/param.h>
 #include <sys/bus.h>
 
+#include <vm/vm.h>
+#include <vm/pmap.h>
+
 #include <machine/bus.h>
 #include <machine/md_var.h>
+#include <machine/pmap.h>
+#include <machine/vmparam.h>
 
 #include <dev/vga/vga.h>
 


More information about the p4-projects mailing list