Date: Sat, 26 Oct 2013 03:22:58 +0000 (UTC) From: Nathan Whitehorn <nwhitehorn@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r257144 - head/sys/dev/uart Message-ID: <201310260322.r9Q3Mw3f074768@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: nwhitehorn Date: Sat Oct 26 03:22:57 2013 New Revision: 257144 URL: http://svnweb.freebsd.org/changeset/base/257144 Log: Fix build after r257111 by including headers with definition of pmap_kextract(). Modified: head/sys/dev/uart/uart_cpu_fdt.c Modified: head/sys/dev/uart/uart_cpu_fdt.c ============================================================================== --- head/sys/dev/uart/uart_cpu_fdt.c Sat Oct 26 03:21:54 2013 (r257143) +++ head/sys/dev/uart/uart_cpu_fdt.c Sat Oct 26 03:22:57 2013 (r257144) @@ -35,6 +35,10 @@ __FBSDID("$FreeBSD$"); #include <sys/kernel.h> #include <sys/module.h> +#include <vm/vm.h> +#include <vm/pmap.h> +#include <machine/pmap.h> + #include <machine/bus.h> #include <machine/fdt.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310260322.r9Q3Mw3f074768>