mirror of
https://github.com/opnsense/src.git
synced 2026-06-03 13:58:30 -04:00
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:
parent
c2caa3425b
commit
588fbadffb
1 changed files with 2 additions and 1 deletions
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue