diff options
Diffstat (limited to 'Kernel/Devices/PATAChannel.cpp')
-rw-r--r-- | Kernel/Devices/PATAChannel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Devices/PATAChannel.cpp b/Kernel/Devices/PATAChannel.cpp index 553acd412b..172816ea1b 100644 --- a/Kernel/Devices/PATAChannel.cpp +++ b/Kernel/Devices/PATAChannel.cpp @@ -108,7 +108,7 @@ namespace Kernel { #define PCI_Mass_Storage_Class 0x1 #define PCI_IDE_Controller_Subclass 0x1 -static auto s_pata_lock = AK::make_singleton<Lock>(); +static AK::Singleton<Lock> s_pata_lock; static Lock& s_lock() { |