1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:27:46 +00:00

Kernel/HID: Don't use *LockRefPtrs in the I8042Controller code

This commit is contained in:
Liav A 2023-04-15 09:22:31 +03:00 committed by Andreas Kling
parent 747efc5265
commit 32557be930
4 changed files with 8 additions and 6 deletions

View file

@ -8,6 +8,8 @@
#include <AK/AtomicRefCounted.h>
#include <AK/IntrusiveList.h>
#include <AK/NonnullRefPtr.h>
#include <AK/RefPtr.h>
namespace Kernel {
@ -22,7 +24,7 @@ protected:
HIDController() = default;
private:
IntrusiveListNode<HIDController, NonnullLockRefPtr<HIDController>> m_list_node;
IntrusiveListNode<HIDController, NonnullRefPtr<HIDController>> m_list_node;
};
}