Date: Mon, 25 Apr 2005 05:08:45 GMT From: Marcel Moolenaar <marcel@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 75925 for review Message-ID: <200504250508.j3P58jEX058217@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=75925 Change 75925 by marcel@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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200504250508.j3P58jEX058217>