1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:37:34 +00:00

ACPI: Adopt the changes in the definitions file

Also, the functions for StaticParsing namespace were added.
Therefore, some early access functionality is being used also
in ACPI::StaticParser class.
This commit is contained in:
Liav A 2020-02-28 22:24:10 +02:00 committed by Andreas Kling
parent bf55d83c1f
commit b9c65ea746
6 changed files with 453 additions and 510 deletions

View file

@ -34,10 +34,10 @@
#include <LibBareMetal/Memory/VirtualAddress.h>
namespace Kernel {
class ACPIParser {
namespace ACPI {
class Parser {
public:
static ACPIParser& the();
static Parser& the();
static bool is_initialized();
static void initialize_limited();
@ -53,8 +53,8 @@ public:
virtual bool is_operable();
protected:
explicit ACPIParser(bool usable);
explicit Parser(bool usable);
bool m_operable;
};
}
}