aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorsigsegv7 <ian@vegaa.systems>2023-10-11 16:45:04 -0400
committersigsegv7 <ian@vegaa.systems>2023-10-11 16:46:35 -0400
commit56a48e52c3abdba51af3178a16beff56600bc91a (patch)
tree43524be2d24d7767a8eb29463b2408ddf50df52d /sys
parent46f72c5c930419aa57aca0d8480d1ccc9131d590 (diff)
kernel: vm: pmap.h -> vm_pmap.h
Signed-off-by: sigsegv7 <ian@vegaa.systems>
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/amd64/pmap.c2
-rw-r--r--sys/include/vm/vm.h2
-rw-r--r--sys/include/vm/vm_pmap.h (renamed from sys/include/vm/pmap.h)0
-rw-r--r--sys/vm/vm_init.c1
4 files changed, 2 insertions, 3 deletions
diff --git a/sys/arch/amd64/pmap.c b/sys/arch/amd64/pmap.c
index 0da80d9..92d559f 100644
--- a/sys/arch/amd64/pmap.c
+++ b/sys/arch/amd64/pmap.c
@@ -27,7 +27,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
-#include <vm/pmap.h>
+#include <vm/vm_pmap.h>
#include <sys/cdefs.h>
#define PTE_ADDR_MASK 0x000FFFFFFFFFF000
diff --git a/sys/include/vm/vm.h b/sys/include/vm/vm.h
index e238cd0..62c1dfd 100644
--- a/sys/include/vm/vm.h
+++ b/sys/include/vm/vm.h
@@ -34,7 +34,7 @@
#include <sys/limine.h>
#include <sys/cdefs.h>
#include <vm/vm_page.h>
-#include <vm/pmap.h>
+#include <vm/vm_pmap.h>
extern volatile struct limine_hhdm_request g_hhdm_request;
diff --git a/sys/include/vm/pmap.h b/sys/include/vm/vm_pmap.h
index 8dd6b7d..8dd6b7d 100644
--- a/sys/include/vm/pmap.h
+++ b/sys/include/vm/vm_pmap.h
diff --git a/sys/vm/vm_init.c b/sys/vm/vm_init.c
index 0930b54..e160708 100644
--- a/sys/vm/vm_init.c
+++ b/sys/vm/vm_init.c
@@ -28,7 +28,6 @@
*/
#include <vm/vm.h>
-#include <vm/pmap.h>
#include <sys/panic.h>
static volatile struct vas kernel_vas;