diff options
author | Andreas Kling <kling@serenityos.org> | 2020-02-08 02:17:26 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-08 02:20:03 +0100 |
commit | 88ea152b2425338ad0ad9a199590f396590f7b5a (patch) | |
tree | 168518e8f49cf651273aac98a8e85285ea058664 /Kernel/FileSystem/FileSystem.h | |
parent | 6be880bd10dce91114706704aa8f1f27bbdce89f (diff) | |
download | serenity-88ea152b2425338ad0ad9a199590f396590f7b5a.zip |
Kernel: Merge unnecessary DiskDevice class into BlockDevice
Diffstat (limited to 'Kernel/FileSystem/FileSystem.h')
-rw-r--r-- | Kernel/FileSystem/FileSystem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/FileSystem/FileSystem.h b/Kernel/FileSystem/FileSystem.h index 30fef306ee..373f73241f 100644 --- a/Kernel/FileSystem/FileSystem.h +++ b/Kernel/FileSystem/FileSystem.h @@ -35,7 +35,7 @@ #include <AK/String.h> #include <AK/WeakPtr.h> #include <AK/kstdio.h> -#include <Kernel/Devices/DiskDevice.h> +#include <Kernel/Devices/BlockDevice.h> #include <Kernel/FileSystem/InodeIdentifier.h> #include <Kernel/FileSystem/InodeMetadata.h> #include <Kernel/KResult.h> |