mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 12:28:12 +00:00
Kernel: Rename SystemExposedComponent => SysFSComponent
This commit is contained in:
parent
27244eb0ee
commit
517170a986
10 changed files with 32 additions and 32 deletions
|
@ -54,7 +54,7 @@ OwnPtr<KBuffer> ExposedComponent::try_to_generate_buffer() const
|
|||
}
|
||||
|
||||
UNMAP_AFTER_INIT ExposedComponent::ExposedComponent(String name, PhysicalAddress paddr, size_t table_size)
|
||||
: SystemExposedComponent(name)
|
||||
: SysFSComponent(name)
|
||||
, m_paddr(paddr)
|
||||
, m_length(table_size)
|
||||
{
|
||||
|
@ -69,7 +69,7 @@ UNMAP_AFTER_INIT void ExposedFolder::initialize()
|
|||
UNMAP_AFTER_INIT ExposedFolder::ExposedFolder()
|
||||
: SystemExposedFolder("acpi", SysFSComponentRegistry::the().root_folder())
|
||||
{
|
||||
NonnullRefPtrVector<SystemExposedComponent> components;
|
||||
NonnullRefPtrVector<SysFSComponent> components;
|
||||
size_t ssdt_count = 0;
|
||||
ACPI::Parser::the()->enumerate_static_tables([&](const StringView& signature, PhysicalAddress p_table, size_t length) {
|
||||
if (signature == "SSDT") {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue