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:
parent
747efc5265
commit
32557be930
4 changed files with 8 additions and 6 deletions
|
@ -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;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue