mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-09 01:29:17 +00:00
ACPI: Keep common flags in structures for later usage
This commit is contained in:
parent
3cbc2f4381
commit
5d7855adea
Notes:
sideshowbarker
2024-07-19 08:45:35 +09:00
Author: https://github.com/supercomputer7
Commit: 5d7855adea
Pull-request: https://github.com/SerenityOS/serenity/pull/1415
Reviewed-by: https://github.com/awesomekling
5 changed files with 128 additions and 27 deletions
|
@ -94,6 +94,16 @@ namespace ACPI {
|
|||
klog() << "ACPI Limited: No AML Interpretation Allowed";
|
||||
ASSERT_NOT_REACHED();
|
||||
}
|
||||
const FADTFlags::HardwareFeatures& Parser::hardware_features() const
|
||||
{
|
||||
klog() << "ACPI Limited: Hardware features cannot be obtained";
|
||||
ASSERT_NOT_REACHED();
|
||||
}
|
||||
const FADTFlags::x86_Specific_Flags& Parser::x86_specific_flags() const
|
||||
{
|
||||
klog() << "ACPI Limited: x86 specific features cannot be obtained";
|
||||
ASSERT_NOT_REACHED();
|
||||
}
|
||||
bool Parser::is_operable()
|
||||
{
|
||||
return false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue