mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:48:10 +00:00
Kernel: Remove "non-operational" ACPI parser state
If we don't support ACPI, just don't instantiate an ACPI parser. This is way less confusing than having a special parser class whose only purpose is to do nothing. We now search for the RSDP in ACPI::initialize() instead of letting the parser constructor do it. This allows us to defer the decision to create a parser until we're sure we can make a useful one.
This commit is contained in:
parent
d95362d8cd
commit
4644217094
13 changed files with 46 additions and 111 deletions
|
@ -167,9 +167,6 @@ void init_stage2()
|
|||
SyncTask::spawn();
|
||||
FinalizerTask::spawn();
|
||||
|
||||
// Sample test to see if the ACPI parser is working...
|
||||
klog() << "ACPI: HPET table @ " << ACPI::Parser::the().find_table("HPET");
|
||||
|
||||
PCI::initialize();
|
||||
|
||||
if (kernel_command_line().contains("text_debug")) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue