summaryrefslogtreecommitdiff
path: root/vm
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2012-12-22 12:59:38 +0100
committerRichard Braun <rbraun@sceen.net>2012-12-22 12:59:38 +0100
commitd17df48f272339c7596bbf223f4cb581f17dc364 (patch)
tree154993948b18010ab7454cb0538982f4a76c88b7 /vm
parent3a6de0b73e0236d22f04844ca40349d1f3a4e59f (diff)
x86/pmap: physical map creation
Diffstat (limited to 'vm')
-rw-r--r--vm/vm_setup.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/vm/vm_setup.c b/vm/vm_setup.c
index cca7ada6..72a7db4b 100644
--- a/vm/vm_setup.c
+++ b/vm/vm_setup.c
@@ -16,6 +16,7 @@
*/
#include <kern/kmem.h>
+#include <machine/pmap.h>
#include <vm/vm_map.h>
#include <vm/vm_kmem.h>
#include <vm/vm_phys.h>
@@ -28,4 +29,5 @@ vm_setup(void)
vm_phys_setup();
kmem_setup();
vm_map_setup();
+ pmap_setup();
}