diff options
author | Richard Braun <rbraun@sceen.net> | 2017-06-25 00:16:26 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-06-25 00:16:26 +0200 |
commit | 9e1c5185ee157f4b0b155c0a788bcd0557c44623 (patch) | |
tree | a46c9e4d6b63ec4c1e30f31c69ce1270de54439c /kern/kmem.c | |
parent | 9fb3131dbde508526dcbec29aac166ca425cd352 (diff) |
Remove the param module
Move the page properties into the new x86/page module, and the virtual
memory layout macros into the x86/pmap module.
Diffstat (limited to 'kern/kmem.c')
-rw-r--r-- | kern/kmem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/kmem.c b/kern/kmem.c index 90557310..572df4fe 100644 --- a/kern/kmem.c +++ b/kern/kmem.c @@ -57,10 +57,10 @@ #include <kern/macros.h> #include <kern/mutex.h> #include <kern/panic.h> -#include <kern/param.h> #include <kern/shell.h> #include <kern/thread.h> #include <machine/cpu.h> +#include <machine/page.h> #include <machine/pmap.h> #include <vm/vm_kmem.h> #include <vm/vm_page.h> |