Fix include file order in io.h in the LinuxKPI.

Make sure sys/types.h is included before machine/vm.h.

PR:		247775
Submitted by:	pkubaj@
MFC after:	1 week
Sponsored by:	Mellanox Technologies
This commit is contained in:
Hans Petter Selasky 2020-07-05 19:38:36 +00:00
parent c2caa3425b
commit 588fbadffb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=362946

View File

@ -31,10 +31,11 @@
#ifndef _LINUX_IO_H_
#define _LINUX_IO_H_
#include <machine/vm.h>
#include <sys/endian.h>
#include <sys/types.h>
#include <machine/vm.h>
#include <linux/compiler.h>
#include <linux/types.h>