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:
parent
bf55d83c1f
commit
b9c65ea746
6 changed files with 453 additions and 510 deletions
|
@ -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;
|
||||
};
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue