summaryrefslogtreecommitdiff
path: root/Kernel/FileSystem/SysFS/Component.cpp
diff options
context:
space:
mode:
authorLiav A <liavalb@gmail.com>2022-10-23 21:51:56 +0300
committerAndrew Kaster <andrewdkaster@gmail.com>2022-11-08 02:54:48 -0700
commitf53149d5f61422bad5507661af2ff3374bc0f9c8 (patch)
treed3e233cc35704c534badd0642f008bb024008722 /Kernel/FileSystem/SysFS/Component.cpp
parent7eed3dab5d77116ba9749ceb66e5d4e998db7c22 (diff)
downloadserenity-f53149d5f61422bad5507661af2ff3374bc0f9c8.zip
Kernel: Split the SysFS core files into smaller components
Diffstat (limited to 'Kernel/FileSystem/SysFS/Component.cpp')
-rw-r--r--Kernel/FileSystem/SysFS/Component.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/Kernel/FileSystem/SysFS/Component.cpp b/Kernel/FileSystem/SysFS/Component.cpp
index 77140bdf15..a79bf06200 100644
--- a/Kernel/FileSystem/SysFS/Component.cpp
+++ b/Kernel/FileSystem/SysFS/Component.cpp
@@ -4,8 +4,10 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
-#include <Kernel/FileSystem/SysFS.h>
#include <Kernel/FileSystem/SysFS/Component.h>
+#include <Kernel/FileSystem/SysFS/DirectoryInode.h>
+#include <Kernel/FileSystem/SysFS/Inode.h>
+#include <Kernel/FileSystem/SysFS/LinkInode.h>
#include <Kernel/FileSystem/SysFS/Registry.h>
#include <Kernel/KLexicalPath.h>