summaryrefslogtreecommitdiff
path: root/vm
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2012-12-01 15:44:24 +0100
committerRichard Braun <rbraun@sceen.net>2012-12-01 15:44:24 +0100
commitcf06fbde7911c5380d9f145f55168cddb4f01bd4 (patch)
tree8364771a4b3b326f97b4de93eef778557ec775ec /vm
parent7639d05dcb960c91ba0bd18daa55b4deb30e8b52 (diff)
kern/kmem: merge kmem_bootstrap into kmem_setup
Diffstat (limited to 'vm')
-rw-r--r--vm/vm_setup.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/vm/vm_setup.c b/vm/vm_setup.c
index 33b07257..fa8c8139 100644
--- a/vm/vm_setup.c
+++ b/vm/vm_setup.c
@@ -26,8 +26,7 @@ vm_setup(void)
{
vm_kmem_setup();
vm_phys_setup();
- kmem_bootstrap();
- vm_map_bootstrap();
kmem_setup();
+ vm_map_bootstrap();
vm_map_setup();
}