1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:28:11 +00:00

Kernel/SysFS: Add PCI exposed folder

This commit is contained in:
Liav A 2021-05-27 22:03:26 +03:00 committed by Andreas Kling
parent 0259781402
commit 1baa05d6b2
4 changed files with 128 additions and 4 deletions

View file

@ -13,7 +13,6 @@
namespace Kernel {
static InodeIndex s_next_inode_index;
static AK::Singleton<SystemRegistrar> s_the;
SystemRegistrar& SystemRegistrar::the()
@ -24,7 +23,6 @@ SystemRegistrar& SystemRegistrar::the()
UNMAP_AFTER_INIT void SystemRegistrar::initialize()
{
VERIFY(!s_the.is_initialized());
s_next_inode_index = 0;
s_the.ensure_instance();
}