1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 08:34:57 +00:00

Kernel: Move {Virtual,Physical}Address classes to the Memory directory

This commit is contained in:
Liav A 2023-02-24 19:54:30 +02:00 committed by Jelle Raaijmakers
parent 64af4953c2
commit aaa1de7878
54 changed files with 61 additions and 59 deletions

View file

@ -7,7 +7,7 @@
#pragma once
#include <AK/Types.h>
#include <Kernel/PhysicalAddress.h>
#include <Kernel/Memory/PhysicalAddress.h>
namespace Kernel::ACPI {

View file

@ -14,10 +14,10 @@
#include <Kernel/Firmware/ACPI/Initialize.h>
#include <Kernel/Interrupts/IRQHandler.h>
#include <Kernel/Library/LockRefPtr.h>
#include <Kernel/Memory/PhysicalAddress.h>
#include <Kernel/Memory/Region.h>
#include <Kernel/Memory/TypedMapping.h>
#include <Kernel/PhysicalAddress.h>
#include <Kernel/VirtualAddress.h>
#include <Kernel/Memory/VirtualAddress.h>
namespace Kernel::ACPI {