summaryrefslogtreecommitdiff
path: root/vm
diff options
context:
space:
mode:
Diffstat (limited to 'vm')
-rw-r--r--vm/vm_kmem.c2
-rw-r--r--vm/vm_map.c2
-rw-r--r--vm/vm_page.c2
-rw-r--r--vm/vm_page.h2
4 files changed, 4 insertions, 4 deletions
diff --git a/vm/vm_kmem.c b/vm/vm_kmem.c
index 8a7272c..a9ba842 100644
--- a/vm/vm_kmem.c
+++ b/vm/vm_kmem.c
@@ -18,10 +18,10 @@
* TODO Rework so that pmap update errors can be handled.
*/
+#include <assert.h>
#include <stddef.h>
#include <stdint.h>
-#include <kern/assert.h>
#include <kern/cpumap.h>
#include <kern/init.h>
#include <kern/panic.h>
diff --git a/vm/vm_map.c b/vm/vm_map.c
index 657f4b5..f506d3b 100644
--- a/vm/vm_map.c
+++ b/vm/vm_map.c
@@ -19,11 +19,11 @@
* needed for kernel allocation.
*/
+#include <assert.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
-#include <kern/assert.h>
#include <kern/error.h>
#include <kern/init.h>
#include <kern/kmem.h>
diff --git a/vm/vm_page.c b/vm/vm_page.c
index 284964a..edf213e 100644
--- a/vm/vm_page.c
+++ b/vm/vm_page.c
@@ -29,13 +29,13 @@
* The symmetric case is handled likewise.
*/
+#include <assert.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
-#include <kern/assert.h>
#include <kern/init.h>
#include <kern/list.h>
#include <kern/macros.h>
diff --git a/vm/vm_page.h b/vm/vm_page.h
index 139f1bf..fa018a0 100644
--- a/vm/vm_page.h
+++ b/vm/vm_page.h
@@ -21,10 +21,10 @@
#ifndef _VM_VM_PAGE_H
#define _VM_VM_PAGE_H
+#include <assert.h>
#include <stddef.h>
#include <stdint.h>
-#include <kern/assert.h>
#include <kern/list.h>
#include <kern/log2.h>
#include <kern/macros.h>