1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 02:57:36 +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

@ -11,8 +11,8 @@
#include <Kernel/Graphics/Bochs/Definitions.h>
#include <Kernel/Graphics/Console/GenericFramebufferConsole.h>
#include <Kernel/Graphics/GenericGraphicsAdapter.h>
#include <Kernel/Memory/PhysicalAddress.h>
#include <Kernel/Memory/TypedMapping.h>
#include <Kernel/PhysicalAddress.h>
namespace Kernel {

View file

@ -8,7 +8,7 @@
#include <AK/Types.h>
#include <Kernel/Graphics/Console/Console.h>
#include <Kernel/PhysicalAddress.h>
#include <Kernel/Memory/PhysicalAddress.h>
namespace Kernel::Graphics {

View file

@ -10,7 +10,7 @@
#include <Kernel/Bus/PCI/Definitions.h>
#include <Kernel/Devices/BlockDevice.h>
#include <Kernel/Library/LockWeakable.h>
#include <Kernel/PhysicalAddress.h>
#include <Kernel/Memory/PhysicalAddress.h>
namespace Kernel {
class GenericGraphicsAdapter

View file

@ -6,7 +6,7 @@
#include <Kernel/Arch/Delay.h>
#include <Kernel/Graphics/Intel/Auxiliary/GMBusConnector.h>
#include <Kernel/PhysicalAddress.h>
#include <Kernel/Memory/PhysicalAddress.h>
namespace Kernel {

View file

@ -9,7 +9,7 @@
#include <Kernel/Graphics/Definitions.h>
#include <Kernel/Graphics/GraphicsManagement.h>
#include <Kernel/Graphics/Intel/NativeGraphicsAdapter.h>
#include <Kernel/PhysicalAddress.h>
#include <Kernel/Memory/PhysicalAddress.h>
namespace Kernel {

View file

@ -11,7 +11,7 @@
#include <Kernel/Graphics/Definitions.h>
#include <Kernel/Graphics/Intel/DisplayConnectorGroup.h>
#include <Kernel/Graphics/Intel/NativeDisplayConnector.h>
#include <Kernel/PhysicalAddress.h>
#include <Kernel/Memory/PhysicalAddress.h>
#include <LibEDID/EDID.h>
namespace Kernel {

View file

@ -5,7 +5,7 @@
*/
#include <Kernel/Graphics/Intel/Plane/DisplayPlane.h>
#include <Kernel/PhysicalAddress.h>
#include <Kernel/Memory/PhysicalAddress.h>
namespace Kernel {

View file

@ -5,7 +5,7 @@
*/
#include <Kernel/Graphics/Intel/Plane/G33DisplayPlane.h>
#include <Kernel/PhysicalAddress.h>
#include <Kernel/Memory/PhysicalAddress.h>
namespace Kernel {

View file

@ -6,7 +6,7 @@
#include <Kernel/Arch/Delay.h>
#include <Kernel/Graphics/Intel/Transcoder/AnalogDisplayTranscoder.h>
#include <Kernel/PhysicalAddress.h>
#include <Kernel/Memory/PhysicalAddress.h>
namespace Kernel {

View file

@ -6,7 +6,7 @@
#include <Kernel/Arch/Delay.h>
#include <Kernel/Graphics/Intel/Transcoder/DisplayTranscoder.h>
#include <Kernel/PhysicalAddress.h>
#include <Kernel/Memory/PhysicalAddress.h>
namespace Kernel {

View file

@ -12,8 +12,8 @@
#include <Kernel/Graphics/VMWare/Definitions.h>
#include <Kernel/IOWindow.h>
#include <Kernel/Locking/Spinlock.h>
#include <Kernel/Memory/PhysicalAddress.h>
#include <Kernel/Memory/TypedMapping.h>
#include <Kernel/PhysicalAddress.h>
namespace Kernel {