aboutsummaryrefslogtreecommitdiff
path: root/include/apos/init.h
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2021-10-11 14:02:31 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2021-10-11 14:02:31 +0300
commitebd34a9ab3809167e16e4107c8e72d1d81faff9c (patch)
tree321264b3083edc4f5306c2b48cb723909bfe7731 /include/apos/init.h
parent091463c1057f50b47156a138d7d1dbd09494a6d5 (diff)
downloadkmi-ebd34a9ab3809167e16e4107c8e72d1d81faff9c.tar.gz
kmi-ebd34a9ab3809167e16e4107c8e72d1d81faff9c.zip
Renamed [pv]addr_t to [pv]m_t
Diffstat (limited to 'include/apos/init.h')
-rw-r--r--include/apos/init.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/include/apos/init.h b/include/apos/init.h
index 1d687cb..05e24ba 100644
--- a/include/apos/init.h
+++ b/include/apos/init.h
@@ -4,24 +4,24 @@
#include <apos/pmem.h>
struct init_data_t {
- paddr_t init_base;
- paddr_t init_top;
+ pm_t init_base;
+ pm_t init_top;
- paddr_t initrd_base;
- paddr_t initrd_top;
+ pm_t initrd_base;
+ pm_t initrd_top;
- paddr_t fdt_base;
- paddr_t fdt_top;
+ pm_t fdt_base;
+ pm_t fdt_top;
- paddr_t stack_base;
- paddr_t stack_top;
+ pm_t stack_base;
+ pm_t stack_top;
struct vm_branch_t *kernel_vm_base;
/*
TODO: is this necessary?
- paddr_t pmap_base;
- paddr_t pmap_top;
+ pm_t pmap_base;
+ pm_t pmap_top;
*/
};