mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 17:57:35 +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") {
|
||||
|
|
|
@ -25,7 +25,7 @@ private:
|
|||
ExposedFolder();
|
||||
};
|
||||
|
||||
class ExposedComponent : public SystemExposedComponent {
|
||||
class ExposedComponent : public SysFSComponent {
|
||||
public:
|
||||
static NonnullRefPtr<ExposedComponent> create(String name, PhysicalAddress, size_t table_size);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue