summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/HALKit/AMD64/Paging.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-02-03 19:06:45 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-02-03 19:06:45 +0100
commit30ba1aab88bd8138a6b3b3e1dbb464e4e67af698 (patch)
tree906bf0c4e0bc5864224038395bfdb12e38876168 /src/kernel/HALKit/AMD64/Paging.h
parentdaf906b02d2ba542f407872db9f7b1da2a5b36c4 (diff)
chore: {DDK, KernelKit}: Improvements and release schedule.v0.1.31v0.1.31-develop
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/kernel/HALKit/AMD64/Paging.h')
-rw-r--r--src/kernel/HALKit/AMD64/Paging.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/kernel/HALKit/AMD64/Paging.h b/src/kernel/HALKit/AMD64/Paging.h
index 96f87973..41543f5d 100644
--- a/src/kernel/HALKit/AMD64/Paging.h
+++ b/src/kernel/HALKit/AMD64/Paging.h
@@ -56,7 +56,9 @@ namespace Detail {
kPageEnable = 31,
};
- inline UInt8 control_register_cast(ControlRegisterBits reg) { return static_cast<UInt8>(reg); }
+ inline UInt8 control_register_cast(ControlRegisterBits reg) {
+ return static_cast<UInt8>(reg);
+ }
} // namespace Detail
auto mm_alloc_bitmap(Boolean wr, Boolean user, SizeT size, Bool is_page, SizeT pad = 0) -> VoidPtr;