aboutsummaryrefslogtreecommitdiff
path: root/sys/mips
diff options
context:
space:
mode:
authorKyle Evans <kevans@FreeBSD.org>2019-09-23 12:43:08 +0000
committerKyle Evans <kevans@FreeBSD.org>2019-09-23 12:43:08 +0000
commit2e6a21bbd8416c532a4c207caf01e7d2b47f7327 (patch)
treef02efead7dab1448f893aa3c4bee1b07da4366e4 /sys/mips
parent55258ab0ff2a419a6a703a8a2f4277f171546131 (diff)
downloadsrc-2e6a21bbd8416c532a4c207caf01e7d2b47f7327.tar.gz
src-2e6a21bbd8416c532a4c207caf01e7d2b47f7327.zip
mips: fix XLPN32 after r352434
SYSINIT usage was added, but the <sys/kernel.h> dependency was not added. This worked by coincidence, as most of the mips configs have DDB enabled and pmap.c gets <sys/kernel.h> via ddb.h pollution. Reported by: dim
Notes
Notes: svn path=/head/; revision=352619
Diffstat (limited to 'sys/mips')
-rw-r--r--sys/mips/mips/pmap.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/mips/mips/pmap.c b/sys/mips/mips/pmap.c
index f498fa504d9e..10487ac18738 100644
--- a/sys/mips/mips/pmap.c
+++ b/sys/mips/mips/pmap.c
@@ -68,6 +68,7 @@ __FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/systm.h>
+#include <sys/kernel.h>
#include <sys/lock.h>
#include <sys/mman.h>
#include <sys/msgbuf.h>