diff options
author | Andreas Kling <kling@serenityos.org> | 2020-03-08 12:33:14 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-03-08 13:06:51 +0100 |
commit | fa9fba69018dd7055794b9dfab81c7b89e98b279 (patch) | |
tree | e976b9998cbe08318773fa55db40cbd576ce5e0a /Kernel/Devices/PATADiskDevice.cpp | |
parent | 37fc6c117c1a7537f5ba0de69e027a78cbf31af2 (diff) | |
download | serenity-fa9fba69018dd7055794b9dfab81c7b89e98b279.zip |
Kernel: Add missing #includes now that <AK/StdLibExtras.h> is smaller
Diffstat (limited to 'Kernel/Devices/PATADiskDevice.cpp')
-rw-r--r-- | Kernel/Devices/PATADiskDevice.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/Devices/PATADiskDevice.cpp b/Kernel/Devices/PATADiskDevice.cpp index 5dad693b88..a3aeb13a75 100644 --- a/Kernel/Devices/PATADiskDevice.cpp +++ b/Kernel/Devices/PATADiskDevice.cpp @@ -26,6 +26,7 @@ //#define PATA_DEVICE_DEBUG +#include <AK/Memory.h> #include <Kernel/Devices/PATAChannel.h> #include <Kernel/Devices/PATADiskDevice.h> #include <Kernel/FileSystem/FileDescription.h> |