mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 02:17:35 +00:00
Kernel: Use VirtualAddress & PhysicalAddress classes from LibBareMetal
This commit is contained in:
parent
7c4dd0c8cf
commit
99ea80695e
16 changed files with 20 additions and 163 deletions
|
@ -30,8 +30,8 @@
|
|||
#include <Kernel/ACPI/ACPIStaticParser.h>
|
||||
#include <Kernel/IRQHandler.h>
|
||||
#include <Kernel/Lock.h>
|
||||
#include <Kernel/VM/PhysicalAddress.h>
|
||||
#include <Kernel/VM/PhysicalPage.h>
|
||||
#include <LibBareMetal/Memory/PhysicalAddress.h>
|
||||
|
||||
class ACPIDynamicParser final : public IRQHandler
|
||||
, ACPIStaticParser {
|
||||
|
|
|
@ -29,9 +29,9 @@
|
|||
#include <AK/Types.h>
|
||||
#include <Kernel/ACPI/Definitions.h>
|
||||
#include <Kernel/FileSystem/File.h>
|
||||
#include <Kernel/VM/PhysicalAddress.h>
|
||||
#include <Kernel/VM/Region.h>
|
||||
#include <Kernel/VM/VirtualAddress.h>
|
||||
#include <LibBareMetal/Memory/PhysicalAddress.h>
|
||||
#include <LibBareMetal/Memory/VirtualAddress.h>
|
||||
|
||||
class ACPIParser {
|
||||
public:
|
||||
|
@ -53,4 +53,4 @@ public:
|
|||
protected:
|
||||
explicit ACPIParser(bool usable);
|
||||
bool m_operable;
|
||||
};
|
||||
};
|
||||
|
|
|
@ -28,9 +28,9 @@
|
|||
|
||||
#include <AK/Types.h>
|
||||
#include <AK/Vector.h>
|
||||
#include <Kernel/VM/PhysicalAddress.h>
|
||||
#include <Kernel/VM/Region.h>
|
||||
#include <Kernel/VM/VirtualAddress.h>
|
||||
#include <LibBareMetal/Memory/PhysicalAddress.h>
|
||||
#include <LibBareMetal/Memory/VirtualAddress.h>
|
||||
|
||||
namespace SMBIOS {
|
||||
struct [[gnu::packed]] LegacyEntryPoint32bit
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue