summaryrefslogtreecommitdiff
path: root/Kernel/VM/PhysicalPage.h
diff options
context:
space:
mode:
authorLiav A <liavalb@gmail.com>2020-02-09 18:15:58 +0200
committerAndreas Kling <kling@serenityos.org>2020-02-09 19:38:17 +0100
commit99ea80695e64d358fa06c0f1d101f953c5ebf44b (patch)
treefe806778d9ea0ea2f8b189e53e27b9c2027773f9 /Kernel/VM/PhysicalPage.h
parent7c4dd0c8cf251b8a8f0ff26058836bcab0b9ce6a (diff)
downloadserenity-99ea80695e64d358fa06c0f1d101f953c5ebf44b.zip
Kernel: Use VirtualAddress & PhysicalAddress classes from LibBareMetal
Diffstat (limited to 'Kernel/VM/PhysicalPage.h')
-rw-r--r--Kernel/VM/PhysicalPage.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/VM/PhysicalPage.h b/Kernel/VM/PhysicalPage.h
index 2d916de1df..2d96307b00 100644
--- a/Kernel/VM/PhysicalPage.h
+++ b/Kernel/VM/PhysicalPage.h
@@ -29,7 +29,7 @@
#include <AK/NonnullRefPtr.h>
#include <Kernel/Assertions.h>
#include <Kernel/Heap/SlabAllocator.h>
-#include <Kernel/VM/PhysicalAddress.h>
+#include <LibBareMetal/Memory/PhysicalAddress.h>
class PhysicalPage {
friend class MemoryManager;