summaryrefslogtreecommitdiff
path: root/Kernel/init.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-07-11 01:40:26 +0200
committerAndreas Kling <kling@serenityos.org>2021-07-11 01:40:26 +0200
commitfa9111ac463d645bb801140b1e121d2f00c0efa1 (patch)
tree8fe25eafa107892509ed9111e7689b34921aec8a /Kernel/init.cpp
parentc1143e1bae642d2f5c60265d7df0e3ed2c9024c7 (diff)
downloadserenity-fa9111ac463d645bb801140b1e121d2f00c0efa1.zip
Kernel: Rename ProcFSComponentsRegistrar => ProcFSComponentRegistry
This matches the formatting used in SysFS.
Diffstat (limited to 'Kernel/init.cpp')
-rw-r--r--Kernel/init.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/init.cpp b/Kernel/init.cpp
index 93f43ec894..69ccc11dc3 100644
--- a/Kernel/init.cpp
+++ b/Kernel/init.cpp
@@ -144,7 +144,7 @@ extern "C" [[noreturn]] UNMAP_AFTER_INIT void init()
// Initialize the PCI Bus as early as possible, for early boot (PCI based) serial logging
SysFSComponentRegistry::initialize();
- ProcFSComponentsRegistrar::initialize();
+ ProcFSComponentRegistry::initialize();
PCI::initialize();
PCISerialDevice::detect();