aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/src/memory/allocator
diff options
context:
space:
mode:
authorMatteo Gmür <matteo.gmuer1@ost.ch>2024-10-29 06:55:36 +0000
committerMatteo Gmür <matteo.gmuer1@ost.ch>2024-10-29 06:55:36 +0000
commit0d16592c8dce876d8e621c73dea41c33339f3173 (patch)
tree819e6e1231ed0d2bf2fecaa9a67aca3a8b0da112 /arch/x86_64/src/memory/allocator
parentf9f047f519d0100c40b914d3ce777ac2f8430b38 (diff)
downloadkernel-0d16592c8dce876d8e621c73dea41c33339f3173.tar.xz
kernel-0d16592c8dce876d8e621c73dea41c33339f3173.zip
Use more virtual and physical address typedef where useful
Diffstat (limited to 'arch/x86_64/src/memory/allocator')
-rw-r--r--arch/x86_64/src/memory/allocator/physical_frame.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86_64/src/memory/allocator/physical_frame.cpp b/arch/x86_64/src/memory/allocator/physical_frame.cpp
index b05254b..bef9322 100644
--- a/arch/x86_64/src/memory/allocator/physical_frame.cpp
+++ b/arch/x86_64/src/memory/allocator/physical_frame.cpp
@@ -13,5 +13,5 @@ namespace teachos::arch::memory::allocator
return physical_frame{address / PAGE_FRAME_SIZE};
}
- auto physical_frame::start_address() const -> uint64_t { return frame_number * PAGE_FRAME_SIZE; }
+ auto physical_frame::start_address() const -> physical_address { return frame_number * PAGE_FRAME_SIZE; }
} // namespace teachos::arch::memory::allocator