summaryrefslogtreecommitdiff
path: root/Kernel/Devices/PATAChannel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/Devices/PATAChannel.cpp')
-rw-r--r--Kernel/Devices/PATAChannel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/Devices/PATAChannel.cpp b/Kernel/Devices/PATAChannel.cpp
index 59295e5373..553acd412b 100644
--- a/Kernel/Devices/PATAChannel.cpp
+++ b/Kernel/Devices/PATAChannel.cpp
@@ -25,13 +25,13 @@
*/
#include <AK/ByteBuffer.h>
+#include <AK/Singleton.h>
#include <AK/StringView.h>
#include <Kernel/Devices/PATAChannel.h>
#include <Kernel/Devices/PATADiskDevice.h>
#include <Kernel/FileSystem/ProcFS.h>
#include <Kernel/IO.h>
#include <Kernel/Process.h>
-#include <Kernel/Singleton.h>
#include <Kernel/VM/MemoryManager.h>
namespace Kernel {
@@ -108,7 +108,7 @@ namespace Kernel {
#define PCI_Mass_Storage_Class 0x1
#define PCI_IDE_Controller_Subclass 0x1
-static auto s_pata_lock = make_singleton<Lock>();
+static auto s_pata_lock = AK::make_singleton<Lock>();
static Lock& s_lock()
{