Kernel: Remove unused function from ACPI namespace

This commit is contained in:
Bananymous 2024-12-18 01:43:04 +02:00
parent a584e1a4ec
commit 2259614640
2 changed files with 0 additions and 8 deletions

View File

@ -35,8 +35,6 @@ namespace Kernel::ACPI::AML
BAN::ErrorOr<void> remove_named_object(const Scope& absolute_path);
BAN::ErrorOr<void> initialize_devices();
// node is nullptr if it is not found
struct FindResult
{

View File

@ -429,10 +429,4 @@ namespace Kernel::ACPI::AML
return {};
}
BAN::ErrorOr<void> Namespace::initialize_devices()
{
return {};
}
}