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
This commit is contained in:
Kyle Evans 2019-09-23 12:43:08 +00:00
parent 55258ab0ff
commit 2e6a21bbd8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=352619

View file

@ -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>