diff options
author | 2020-09-11 09:27:09 +0000 | |
---|---|---|
committer | 2020-09-11 09:27:09 +0000 | |
commit | 311b6aa824a006e2f436474d9ba54b31c6d40a20 (patch) | |
tree | d7edaca6a3f82da6df908b07880970f7c4f24429 /sys/dev/acpi/acpidebug.c | |
parent | Support '-p' a flag to filter all actions by PID. (diff) | |
download | wireguard-openbsd-311b6aa824a006e2f436474d9ba54b31c6d40a20.tar.xz wireguard-openbsd-311b6aa824a006e2f436474d9ba54b31c6d40a20.zip |
Include <sys/systm.h> directly instead of relying on hidden UVM includes.
The header is being pulled via db_machdep.h -> uvm_extern.h -> uvm_map.h
Diffstat (limited to 'sys/dev/acpi/acpidebug.c')
-rw-r--r-- | sys/dev/acpi/acpidebug.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sys/dev/acpi/acpidebug.c b/sys/dev/acpi/acpidebug.c index 3f8b789bce8..17bcf1ec8a4 100644 --- a/sys/dev/acpi/acpidebug.c +++ b/sys/dev/acpi/acpidebug.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpidebug.c,v 1.31 2018/06/29 17:39:18 kettenis Exp $ */ +/* $OpenBSD: acpidebug.c,v 1.32 2020/09/11 09:27:10 mpi Exp $ */ /* * Copyright (c) 2006 Marco Peereboom <marco@openbsd.org> * @@ -15,14 +15,15 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include <sys/param.h> +#include <sys/systm.h> +#include <sys/malloc.h> +#include <machine/bus.h> #include <machine/db_machdep.h> #include <ddb/db_output.h> #include <ddb/db_extern.h> #include <ddb/db_lex.h> -#include <machine/bus.h> -#include <sys/malloc.h> - #include <dev/acpi/acpireg.h> #include <dev/acpi/acpivar.h> #include <dev/acpi/amltypes.h> |